Files
scully/inc/AST/Type.h

11 lines
151 B
C
Raw Normal View History

2013-06-01 00:16:38 +02:00
#ifndef TYPE_H
#define TYPE_H
#include <string>
2013-06-01 16:12:38 +02:00
enum class Type { BOOL, INT, STRING, VOID };
2013-06-01 00:16:38 +02:00
2013-06-01 16:22:01 +02:00
std::string typeToString(Type type);
2013-06-01 00:16:38 +02:00
#endif // TYPE_H