# | Line 21 | Line 21 | private: | |
---|---|---|
21 | static string separator, begin, end; | |
22 | string name; | |
23 | vector<Person> multiple; | |
24 | – | static void configure(); |
24 | void query(const string& sn); | |
25 | public: | |
26 | Person(const string& sn = ""); | |
27 | Person(const Person& person) : name(person.name) {} | |
28 | ~Person() {} | |
29 | + | static void configure(); |
30 | bool isMultiple() const { return !multiple.empty(); } | |
31 | vector<Person>::const_iterator beginMultiple() const { return | |
32 | multiple.begin(); } |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |