diff --git a/include/export/export.hpp b/include/export/export.hpp index 5802a1c..de13d2f 100644 --- a/include/export/export.hpp +++ b/include/export/export.hpp @@ -47,6 +47,11 @@ public: explicit ExportBase(const list &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.