Guest User

Untitled

a guest
Mar 14th, 2014
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. std::map< std::string, std::set< std::string> > mymap;
  2. std::set< std::string> s;
  3. s.insert( "orange");
  4. mymap.insert( std::make_pair( std::string("car") , s));
  5. s.insert( "blue");
  6. mymap.insert( std::make_pair( std::string("car") , s));
Advertisement
Add Comment
Please, Sign In to add comment