root/labo1/labo1/AltMap.h
Author: machiel.sleeuwaert
File Size: 378 Bytes
(October 08, 2008 15:33 UTC) Over 3 years ago
#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;
}; |