summaryrefslogtreecommitdiff
path: root/Common/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'Common/types.h')
-rw-r--r--Common/types.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/Common/types.h b/Common/types.h
new file mode 100644
index 0000000..fa6a1b2
--- /dev/null
+++ b/Common/types.h
@@ -0,0 +1,10 @@
+// Extra types used in Night Security
+
+#include <mystring.h>
+
+#include <vector>
+typedef std::vector<string> string_array;
+
+#include <set>
+typedef std::set<string> string_set;
+