# | Line 9 | Line 9 | |
---|---|---|
9 | ||
10 | #include <pstream.h> | |
11 | ||
12 | + | using namespace redi; |
13 | + | |
14 | #include "Matcher.hpp" | |
15 | ||
16 | class Person | |
17 | { | |
18 | private: | |
19 | + | static string file; |
20 | + | static vector<string> args; |
21 | + | static string separator, begin, end; |
22 | string name; | |
23 | vector<Person> multiple; | |
24 | + | static void configure(); |
25 | + | void query(const string& sn); |
26 | public: | |
27 | Person(const string& sn = ""); | |
28 | Person(const Person& person) : name(person.name) {} |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |