#ifndef ASCIIINTMAP__H #define ASCIIINTMAP__H class AsciiIntMap { typedef struct mapMember { char name[40]; int value; }; protected: void * mapPointer; int mapSize; public: AsciiIntMap(void *map, int size); ~AsciiIntMap(void); int search(char *name); }; #endif