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