root/labo1/labo1/AltMap.h

User picture

Author: machiel.sleeuwaert

Revision: 13 («Previous)


File Size: 378 Bytes

(October 08, 2008 15:33 UTC) Over 3 years ago


  

 
Show/hide line numbers
#pragma once
#include "stringheader.h"
#include "AltMapPair.h"

class AltMap{
public:
	AltMap();
	~AltMap();
	void Insert(tstring Key, tstring Value);
	
	
	tstring find(tstring Key);
	void change(tstring Key, tstring NewValue);
	void erase(tstring Key);	


private:

	void makeArrayBigger();
	AltMapPair* m_ArrPTR;
	int m_CurrentSize;
	int m_UsedSize;

};