#ifndef MAP_H #define MAP_H #include #include #include "Set.H" class Map : public Set { private: char ** _values; public: Map (); Map (int* n, char** v, int numElems); Map (const Map& m); ~Map (); void Display (ostream& os = cout) const; char* GetValue (int key) const; Map& operator = (const Map& m); bool operator == (const Map& m) const; }; #endif