Changeset 1856 for code/trunk/src/core/Factory.cc
- Timestamp:
- Sep 29, 2008, 4:15:03 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/core/Factory.cc
r1747 r1856 110 110 return &theOneAndOnlyFactoryInstance; 111 111 } 112 113 /**114 @brief Returns the begin-iterator of the factory-map.115 @return The begin-iterator116 */117 std::map<std::string, Identifier*>::const_iterator Factory::getFactoryBegin()118 {119 return Factory::getFactoryPointer()->identifierStringMap_.begin();120 }121 122 /**123 @brief Returns the end-iterator of the factory-map.124 @return The end-iterator125 */126 std::map<std::string, Identifier*>::const_iterator Factory::getFactoryEnd()127 {128 return Factory::getFactoryPointer()->identifierStringMap_.end();129 }130 112 }
Note: See TracChangeset
for help on using the changeset viewer.