Nix (Dev) 3.5.10
dev - 3.5.10 - 1af9301
Loading...
Searching...
No Matches
CEntTitle.hpp
Go to the documentation of this file.
1#ifndef LIBS_DOCUMENTS_CENTTITLE_HPP_
2#define LIBS_DOCUMENTS_CENTTITLE_HPP_
3
5
6#include <string>
7
8class CEntTitle : public CEntParagraph
9{
10public:
11 CEntTitle();
12 explicit CEntTitle(const std::string &textTitle);
13 CEntTitle(const CEntTitle &other);
14 CEntTitle(CEntTitle &&other) = delete;
15 ~CEntTitle() override;
16
17 CEntTitle &operator=(const CEntTitle &other) = delete;
18 CEntTitle &operator=(CEntTitle &&other) = delete;
19};
20
21#endif /* LIBS_DOCUMENTS_CENTTITLE_HPP_ */
Definition CEntParagraph.hpp:9
Definition CEntTitle.hpp:9
CEntTitle(CEntTitle &&other)=delete
CEntTitle(const CEntTitle &other)
CEntTitle()
Definition CEntTitle.cpp:3
CEntTitle & operator=(CEntTitle &&other)=delete
~CEntTitle() override
CEntTitle & operator=(const CEntTitle &other)=delete