summaryrefslogtreecommitdiffstats
path: root/source/squirrelbindings/SquirrelArray.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/squirrelbindings/SquirrelArray.h')
-rw-r--r--source/squirrelbindings/SquirrelArray.h24
1 files changed, 22 insertions, 2 deletions
diff --git a/source/squirrelbindings/SquirrelArray.h b/source/squirrelbindings/SquirrelArray.h
index 0c2e34f7f..c54315aae 100644
--- a/source/squirrelbindings/SquirrelArray.h
+++ b/source/squirrelbindings/SquirrelArray.h
@@ -1,5 +1,15 @@
+
#pragma once
-#include <string>
+
+
+
+
+
+#ifdef USE_SQUIRREL
+
+
+
+
template <typename T>
class SquirrelArray
@@ -33,4 +43,14 @@ protected:
};
-class SquirrelStringArray : public SquirrelArray<std::string> { }; \ No newline at end of file
+class SquirrelStringArray : public SquirrelArray<std::string> { };
+
+
+
+
+
+#endif // USE_SQUIRREL
+
+
+
+