aboutsummaryrefslogtreecommitdiffstats
path: root/exec.h
blob: 31b7b0a9be0da11e0b786411bf66c6b5bc11645f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef EXEC_H_
#define EXEC_H_

#include <vector>

using namespace std;

class DepNode;
class Vars;

void Exec(const vector<DepNode*>& roots, Vars* vars);

#endif  // EXEC_H_