11 lines
151 B
C++
11 lines
151 B
C++
#ifndef TYPE_H
|
|
#define TYPE_H
|
|
|
|
#include <string>
|
|
|
|
enum class Type { BOOL, INT, STRING, VOID };
|
|
|
|
std::string typeToString(Type type);
|
|
|
|
#endif // TYPE_H
|