diff options
Diffstat (limited to 'freevars.h')
| -rw-r--r-- | freevars.h | 22 |
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 | |||
| 7 | class word; | ||
| 8 | |||
| 9 | class 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 | ||
