From af76b9a0ae58dc8c87548053a5bc310ad6be25ce Mon Sep 17 00:00:00 2001 From: Loek Le Blansch Date: Fri, 1 Nov 2024 21:33:27 +0100 Subject: more small tweaks --- backend/print.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'backend/print.h') diff --git a/backend/print.h b/backend/print.h index 8fa0501..48490de 100644 --- a/backend/print.h +++ b/backend/print.h @@ -13,6 +13,10 @@ public: private: SessionLog(); virtual ~SessionLog(); + SessionLog(const SessionLog &) = delete; + SessionLog(SessionLog &&) = delete; + SessionLog & operator = (const SessionLog &) = delete; + SessionLog & operator = (SessionLog &&) = delete; public: virtual void append(const String & str) const; -- cgit v1.2.3