More stuff! Tons of stuff!
This commit is contained in:
16
inc/AST/Type.h
Normal file
16
inc/AST/Type.h
Normal 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
|
||||
Reference in New Issue
Block a user