about summary refs log tree commit diff stats
path: root/freevars.h
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2015-11-22 18:49:58 -0500
committerKelly Rauchenberger <fefferburbia@gmail.com>2015-11-22 18:49:58 -0500
commit01746a0e03267b6c082b58436c1370567f7cb7c5 (patch)
treee3cfeadb97f93858f326f57958bff4675cd8f9ed /freevars.h
parent294fe00911c6ee0dd9853df7612dcdbd63425c05 (diff)
downloadrawr-ebooks-01746a0e03267b6c082b58436c1370567f7cb7c5.tar.gz
rawr-ebooks-01746a0e03267b6c082b58436c1370567f7cb7c5.tar.bz2
rawr-ebooks-01746a0e03267b6c082b58436c1370567f7cb7c5.zip
Added malapropisms
Diffstat (limited to 'freevars.h')
-rw-r--r--freevars.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/freevars.h b/freevars.h index 923f211..c92b9f5 100644 --- a/freevars.h +++ b/freevars.h
@@ -2,8 +2,6 @@
2#include <string> 2#include <string>
3#include <vector> 3#include <vector>
4 4
5using namespace::std;
6
7#ifndef FREEVARS_H 5#ifndef FREEVARS_H
8#define FREEVARS_H 6#define FREEVARS_H
9 7
@@ -11,11 +9,11 @@ class freevars
11{ 9{
12public: 10public:
13 freevars(); 11 freevars();
14 void addVar(string name, string filename); 12 void addVar(std::string name, std::string filename);
15 string parse(string in); 13 std::string parse(std::string in);
16 14
17private: 15private:
18 map<string, vector<string>* >* vars; 16 std::map<std::string, std::vector<std::string>* >* vars;
19}; 17};
20 18
21#endif \ No newline at end of file 19#endif \ No newline at end of file