#include #include #include using namespace std; typedef map StringMap; typedef StringMap::iterator StringMapIt; typedef vector StringVector; typedef StringVector::iterator StringVectorIt; class Simple { public: Simple(int myArg); int add(int myArg); std::string get_string(std::string str); StringMap getMap(StringMap myMap); StringVector getVec(StringVector myVec); protected: int myInt; };