From eb77d8fc75aa9af0979a0bf7ec173dd80be3046a Mon Sep 17 00:00:00 2001 From: tastytea Date: Mon, 28 Oct 2019 06:46:08 +0100 Subject: [PATCH] Implement all special member functions for ExportBase. --- include/export/export.hpp | 5 +++++ 1 file changed, 5 insertions(+) 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.