blob: a6e907737e4f36a603b69bf942f10b9ecdd19849 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef TYPEDEFS_H_
#define TYPEDEFS_H_
#include <string>
#include <vector>
typedef std::pair<std::string, class Expression*> Assignment;
typedef std::vector<Assignment> AssignmentList;
#endif
|