00001 // type.h 00002 // 00003 // Copyright (C) 2002, Chris Laurel <claurel@shatters.net> 00004 // 00005 // This program is free software; you can redistribute it and/or 00006 // modify it under the terms of the GNU General Public License 00007 // as published by the Free Software Foundation; either version 2 00008 // of the License, or (at your option) any later version. 00009 00010 #ifndef CELSCRIPT_TYPE_H_ 00011 #define CELSCRIPT_TYPE_H_ 00012 00013 #include <celscript/celx.h> 00014 00015 00016 namespace celx 00017 { 00018 00019 enum Type 00020 { 00021 NilType = 0, 00022 NumberType = 1, 00023 StringType = 2, 00024 VectorType = 3, 00025 BooleanType = 4, 00026 FunctionType = 5, 00027 ObjectType = 6, 00028 InvalidType = -1, 00029 }; 00030 00031 } 00032 00033 #endif // CELSCRIPT_TYPE_H_
1.4.1