root/week1oplossing/KeyValueLijst.h

13
19
	
19
	
20
	static const int BASE_SIZE=10;
20
	static const int BASE_SIZE=10;
21
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
22
private:
31
private:
23
	void vergrootArray();
32
	void vergrootArray();
24
33
...
...
26
35
27
	KeyValuePaar* m_KeyValueArrPtr;
36
	KeyValuePaar* m_KeyValueArrPtr;
28
37
29
	KeyValueLijst(const KeyValueLijst& p);									
38
	
30
	KeyValueLijst& operator=(const KeyValueLijst& p);
31
};
39
};