Home | History | Annotate | Download | only in interface

Lines Matching refs:map

14 #include <map>
42 // Puts a pointer to anything in the map and associates it with id. Note, id
43 // needs to be unique for all items in the map.
46 // Removes item from map.
49 // Finds item with associated with id and removes it from the map.
52 // Returns the number of elements stored in the map.
55 // Returns a pointer to the first MapItem in the map.
58 // Returns a pointer to the last MapItem in the map.
61 // Returns a pointer to the MapItem stored after item in the map.
64 // Returns a pointer to the MapItem stored before item in the map.
67 // Returns a pointer to the MapItem associated with id from the map.
71 std::map<int, MapItem*> map_;