aboutsummaryrefslogtreecommitdiff
path: root/backend/PtrList.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-11-01 21:33:27 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-11-01 21:33:27 +0100
commitaf76b9a0ae58dc8c87548053a5bc310ad6be25ce (patch)
treeb2aa5927ed19855c101120593b59a9c3224804ad /backend/PtrList.h
parentbdf6ac149ec260dab767663419731b302679f458 (diff)
more small tweaks
Diffstat (limited to 'backend/PtrList.h')
-rw-r--r--backend/PtrList.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/backend/PtrList.h b/backend/PtrList.h
index 5442043..2947a15 100644
--- a/backend/PtrList.h
+++ b/backend/PtrList.h
@@ -7,6 +7,10 @@ class PtrList : public List<T *> {
public:
using List<T *>::List;
virtual ~PtrList();
+ PtrList(const PtrList &) = delete;
+ PtrList(PtrList &&) = delete;
+ PtrList & operator = (const PtrList &) = delete;
+ PtrList & operator = (PtrList &&) = delete;
};
#include "PtrList.hpp"