Advertisement
Guest User

Untitled

a guest
Nov 15th, 2013
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. void StrVectorMap_AddValue(int index, string key, string value) {
  2. hash_map<string, vector<string> >* map = (hash_map<string, vector<string> >*) strmap.at(index).id;
  3. map->at(key).push_back(value);
  4. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement