Author: machiel.sleeuwaert
(2008/10/15 14:12) Over 3 years ago
19
20
static const int BASE_SIZE=10;
21
22
23
KeyValueLijst(const KeyValueLijst& p);
24
KeyValueLijst& operator=(const KeyValueLijst& p);
25
KeyValueLijst operator+(const KeyValueLijst& p);
26
KeyValueLijst& operator+=(const KeyValueLijst& p);
27
bool operator==(const KeyValueLijst& p);
28
bool operator!=(const KeyValueLijst& p);
29
void operator>>(tstringstream &p);
30
private:
31
void vergrootArray();
32
33
...
35
KeyValuePaar* m_KeyValueArrPtr;
36
37
38
};
39
KeyValueLijst(const KeyValueLijst& p);KeyValueLijst& operator=(const KeyValueLijst& p);