diff options
author | John Hodge (bugs) <tpg@mutabah.net> | 2014-11-22 23:36:20 +0800 |
---|---|---|
committer | John Hodge (bugs) <tpg@mutabah.net> | 2014-11-22 23:36:20 +0800 |
commit | 7ad1a8b4b40784e0a10bd453c75dd0dcf123d5f1 (patch) | |
tree | 0172ed546bdb00e86297d8d36d7cb0a0a1d111f3 /types.hpp | |
download | mrust-7ad1a8b4b40784e0a10bd453c75dd0dcf123d5f1.tar.gz |
Initial commit, lexer structurally complete, parsing hacking up
Diffstat (limited to 'types.hpp')
-rw-r--r-- | types.hpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/types.hpp b/types.hpp new file mode 100644 index 00000000..b5971602 --- /dev/null +++ b/types.hpp @@ -0,0 +1,17 @@ +#ifndef TYPES_HPP_INCLUDED
+#define TYPES_HPP_INCLUDED
+
+enum eCoreType
+{
+ CORETYPE_ANY,
+ CORETYPE_CHAR,
+ CORETYPE_UINT, CORETYPE_INT,
+ CORETYPE_U8, CORETYPE_I8,
+ CORETYPE_U16, CORETYPE_I16,
+ CORETYPE_U32, CORETYPE_I32,
+ CORETYPE_U64, CORETYPE_I64,
+ CORETYPE_f32,
+ CORETYPE_f64,
+};
+
+#endif // TYPES_HPP_INCLUDED
|