aboutsummaryrefslogtreecommitdiff
path: root/backend/PtrList.h
diff options
context:
space:
mode:
Diffstat (limited to 'backend/PtrList.h')
-rw-r--r--backend/PtrList.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/backend/PtrList.h b/backend/PtrList.h
new file mode 100644
index 0000000..5442043
--- /dev/null
+++ b/backend/PtrList.h
@@ -0,0 +1,14 @@
+#pragma once
+
+#include "List.h"
+
+template<typename T>
+class PtrList : public List<T *> {
+public:
+ using List<T *>::List;
+ virtual ~PtrList();
+};
+
+#include "PtrList.hpp"
+
+