Nix (Dev) 3.5.10
dev - 3.5.10 - 1af9301
Loading...
Searching...
No Matches
CEntParagraph.hpp
Go to the documentation of this file.
1#ifndef LIBS_DOCUMENTS_CENTPARAGRAPH_HPP_
2#define LIBS_DOCUMENTS_CENTPARAGRAPH_HPP_
3
5
6#include <string>
7
9{
10public:
12 explicit CEntParagraph(const std::string &textParagraph);
13 CEntParagraph(const CEntParagraph &entParagraph);
14 CEntParagraph(CEntParagraph &&other) = delete;
15 ~CEntParagraph() override;
16
17 CEntParagraph &operator=(const CEntParagraph &other) = delete;
19
20 void processEntity(IManagerPrinter *manager) override;
21
22private:
23 std::string m_textParagraph;
24};
25
26#endif /* LIBS_DOCUMENTS_CENTPARAGRAPH_HPP_ */
Definition CEntParagraph.hpp:9
CEntParagraph & operator=(CEntParagraph &&other)=delete
CEntParagraph & operator=(const CEntParagraph &other)=delete
void processEntity(IManagerPrinter *manager) override
Definition CEntParagraph.cpp:22
~CEntParagraph() override
CEntParagraph()
Definition CEntParagraph.cpp:5
CEntParagraph(CEntParagraph &&other)=delete
std::string m_textParagraph
Definition CEntParagraph.hpp:23
Definition IEntPrinter.hpp:7
Definition IManagerPrinter.hpp:19