| 151 | } |
| 152 | |
| 153 | void TypeLookupService::add(TypeMap::const_iterator begin, TypeMap::const_iterator end) |
| 154 | { |
| 155 | ACE_GUARD(ACE_Thread_Mutex, g, mutex_); |
| 156 | type_map_.insert(begin, end); |
| 157 | } |
| 158 | |
| 159 | void TypeLookupService::add(const TypeIdentifier& ti, const TypeObject& tobj) |
| 160 | { |
no test coverage detected