summaryrefslogtreecommitdiff
path: root/lib/collection.hpp
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2022-08-21 13:14:20 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2022-08-21 13:14:20 +0100
commit7d0710e2df6063dc81158dc1f8b794751e7167ff (patch)
tree97167fe44bc6bc46a0dbb678555e36f9c1bee8b8 /lib/collection.hpp
parentBeginnings of network editor (diff)
downloadilt-7d0710e2df6063dc81158dc1f8b794751e7167ff.tar.bz2
ilt-7d0710e2df6063dc81158dc1f8b794751e7167ff.tar.xz
ilt-7d0710e2df6063dc81158dc1f8b794751e7167ff.zip
Add missing includes
Diffstat (limited to 'lib/collection.hpp')
-rw-r--r--lib/collection.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/collection.hpp b/lib/collection.hpp
index 6e05824..4a54124 100644
--- a/lib/collection.hpp
+++ b/lib/collection.hpp
@@ -1,8 +1,10 @@
#pragma once
#include <algorithm>
+#include <functional>
#include <memory>
#include <type_traits>
+#include <vector>
template<typename Object, bool shared = true> class Collection {
public: