diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-01 21:33:27 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-01 21:33:27 +0100 |
commit | af76b9a0ae58dc8c87548053a5bc310ad6be25ce (patch) | |
tree | b2aa5927ed19855c101120593b59a9c3224804ad /backend/print.h | |
parent | bdf6ac149ec260dab767663419731b302679f458 (diff) |
more small tweaks
Diffstat (limited to 'backend/print.h')
-rw-r--r-- | backend/print.h | 4 |
1 files changed, 4 insertions, 0 deletions
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; |