24 const Container::const_iterator it = container_.find(key);
25 if (it == container_.end())
36 container_[key] = value;
42 void reset() { container_.clear(); }
44 unsigned getNumKeys()
const {
return unsigned(container_.size()); }
48 for (Container::const_iterator it = container_.begin(); it != container_.end(); ++it)
50 std::cout << it->first.c_str() <<
"\t" << it->second.c_str() << std::endl;
std::map< String, String > Container
unsigned getNumKeys() const
MakeString< MaxStringLength >::Type String
void failOnSetCalls(bool really)