Files
scully/inc/AST/Type.h

17 lines
181 B
C
Raw Normal View History

2013-06-01 00:16:38 +02:00
#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