#ifndef THING_H_ #define THING_H_ #include #include using namespace std; class Thing { public: Thing(); virtual ~Thing(); map get_data(); void insert(const string key, const int value); map::iterator search(const string key); private: map data; }; #endif /* THING_H_ */