This commit is contained in:
Markus Hauschild
2013-06-01 16:12:38 +02:00
parent 96731379b4
commit 59c723fe96
4 changed files with 28 additions and 18 deletions

View File

@@ -3,14 +3,6 @@
#include <string>
class Type {
public:
Type(std::string name);
~Type();
std::string getName();
private:
std::string name_;
};
enum class Type { BOOL, INT, STRING, VOID };
#endif // TYPE_H