Time to get started with the interpreter
[fridhskrift.git] / frith / class.hpp
blob91aaaebea5d0b12683175d38345a551576f780af
1 #include <vector>
2 #include <frith/function.hpp>
4 namespace frith
6 struct class_type
8 std::string name;
9 scope * class_scope;
10 std::vector<function> functions;