diff options
Diffstat (limited to 'freevars.h')
| -rw-r--r-- | freevars.h | 21 |
1 files changed, 21 insertions, 0 deletions
| diff --git a/freevars.h b/freevars.h new file mode 100644 index 0000000..6fdc4c2 --- /dev/null +++ b/freevars.h | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | #include <map> | ||
| 2 | #include <string> | ||
| 3 | #include <vector> | ||
| 4 | |||
| 5 | using namespace::std; | ||
| 6 | |||
| 7 | #ifndef FREEVARS_H | ||
| 8 | #define FREEVARS_H | ||
| 9 | |||
| 10 | class freevars | ||
| 11 | { | ||
| 12 | public: | ||
| 13 | freevars(); | ||
| 14 | void addVar(string name, string filename); | ||
| 15 | string parse(string in); | ||
| 16 | |||
| 17 | private: | ||
| 18 | map<string, vector<string>* >* vars; | ||
| 19 | }; | ||
| 20 | |||
| 21 | #endif FREEVARS_H \ No newline at end of file | ||
