about summary refs log tree commit diff stats
path: root/freevars.h
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2016-05-20 23:14:06 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2016-05-20 23:15:10 -0400
commit8c3022e759191e90b5e12bcb6b0b5a6a48b37840 (patch)
tree0d9a8a12616d6ea335fdc687049b05f679e8ccc6 /freevars.h
parenta9c391efd5f0f73b5374dcfd807cdf59ed663e6b (diff)
downloadrawr-ebooks-8c3022e759191e90b5e12bcb6b0b5a6a48b37840.tar.gz
rawr-ebooks-8c3022e759191e90b5e12bcb6b0b5a6a48b37840.tar.bz2
rawr-ebooks-8c3022e759191e90b5e12bcb6b0b5a6a48b37840.zip
Pulled the ebooks functionality out into a library
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