about summary refs log tree commit diff stats
path: root/freevars.h
diff options
context:
space:
mode:
Diffstat (limited to 'freevars.h')
-rw-r--r--freevars.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/freevars.h b/freevars.h deleted file mode 100644 index f800220..0000000 --- a/freevars.h +++ /dev/null
@@ -1,22 +0,0 @@
1#include <string>
2#include <set>
3
4#ifndef FREEVARS_H
5#define FREEVARS_H
6
7class word;
8
9class freevar
10{
11 public:
12 freevar(word& w, std::string file);
13 bool check(std::string f) const;
14 void add(std::string f);
15 word& getWord();
16
17 private:
18 word& w;
19 std::set<std::string> instances;
20};
21
22#endif \ No newline at end of file