blob: 0f5944acc31ad442983d6c1feed1a0a9778f55d5 [file] [log] [blame]
Shinichiro Hamaji776ca302015-06-06 03:52:48 +09001#ifndef EXEC_H_
2#define EXEC_H_
3
4#include <vector>
5
6using namespace std;
7
8class DepNode;
9class Vars;
10
11void Exec(const vector<DepNode*>& roots, const Vars* vars);
12
13#endif // EXEC_H_