Implement all special member functions for ExportBase.

This commit is contained in:
tastytea 2019-10-28 06:46:08 +01:00
parent 46c7ab4a82
commit eb77d8fc75
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 5 additions and 0 deletions

View File

@ -47,6 +47,11 @@ public:
explicit ExportBase(const list<Database::entry> &entries,
ostream &out = cout);
virtual ~ExportBase() = default;
ExportBase(const ExportBase &) = delete;
ExportBase &operator=(const ExportBase &) = delete;
ExportBase(ExportBase &&) = delete;
ExportBase &operator=(ExportBase &&) = delete;
/*!
* @brief Print output to std::ostream.