More stuff! Tons of stuff!

This commit is contained in:
Markus Hauschild
2013-06-01 00:16:38 +02:00
parent 28ca85b94e
commit a778d524b1
11 changed files with 111 additions and 11 deletions

16
inc/AST/Type.h Normal file
View File

@@ -0,0 +1,16 @@
#ifndef TYPE_H
#define TYPE_H
#include <string>
class Type {
public:
Type(std::string name);
~Type();
std::string getName();
private:
std::string name_;
};
#endif // TYPE_H