| 122 | } |
| 123 | |
| 124 | DataType find(char const* pName) const |
| 125 | { |
| 126 | InternalMapConstIter mapIter = m_Map.find(pName); |
| 127 | |
| 128 | if (mapIter == m_Map.end()) |
| 129 | { |
| 130 | return NULL ; |
| 131 | } |
| 132 | |
| 133 | return mapIter->second ; |
| 134 | } |
| 135 | |
| 136 | bool remove(char const* pName, bool deleteObject = true) |
| 137 | { |
no test coverage detected