Changeset 10520 for code/branches/core7/src/libraries/core/class
- Timestamp:
- May 31, 2015, 11:54:06 AM (10 years ago)
- Location:
- code/branches/core7/src/libraries/core/class
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core7/src/libraries/core/class/IdentifierManager.cc
r10519 r10520 277 277 this->identifierByNetworkId_.clear(); 278 278 } 279 280 /**281 @brief Destroys all Identifiers. Called when exiting the program.282 */283 void IdentifierManager::destroyAllIdentifiers()284 {285 for (std::set<Identifier*>::iterator it = this->identifiers_.begin(); it != this->identifiers_.end(); ++it)286 delete (*it);287 288 this->identifiers_.clear();289 this->identifierByString_.clear();290 this->identifierByLowercaseString_.clear();291 this->identifierByNetworkId_.clear();292 }293 279 } -
code/branches/core7/src/libraries/core/class/IdentifierManager.h
r10519 r10520 87 87 { return this->identifierByNetworkId_; } 88 88 89 void destroyAllIdentifiers();90 91 89 private: 92 90 IdentifierManager();
Note: See TracChangeset
for help on using the changeset viewer.