Made compiles on MacOS X a bit smoother, activated MacOS-specific code for CMake...
[supertux.git] / tools / miniswig / tree.cpp
1 #include <config.h>
2 #include "tree.hpp"
3
4 BasicType BasicType::VOID("void");
5 BasicType BasicType::BOOL("bool");
6 BasicType BasicType::CHAR("char");
7 BasicType BasicType::SHORT("short");
8 BasicType BasicType::INT("int");
9 BasicType BasicType::LONG("long");
10 BasicType BasicType::FLOAT("float");
11 BasicType BasicType::DOUBLE("double");
12
13 StringType* StringType::_instance = NULL;
14 HSQUIRRELVMType* HSQUIRRELVMType::_instance = NULL;
15 SQIntegerType* SQIntegerType::_instance = NULL;