Changeset 13743e
- Timestamp:
- May 8, 2010, 10:00:16 PM (15 years ago)
- Children:
- ae8b90
- Parents:
- 48b5fd
- Location:
- molecuilder/src/Actions
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/Actions/ActionRegistry.cpp
r48b5fd r13743e 43 43 } 44 44 45 std::map<const std::string,Action*>::iterator ActionRegistry::getBeginIter() 46 { 47 return actionMap.begin(); 48 } 49 50 std::map<const std::string,Action*>::iterator ActionRegistry::getEndIter() 51 { 52 return actionMap.end(); 53 } 54 45 55 CONSTRUCT_SINGLETON(ActionRegistry) -
molecuilder/src/Actions/ActionRegistry.hpp
r48b5fd r13743e 23 23 void registerAction(Action*); 24 24 25 std::map<const std::string,Action*>::iterator getBeginIter(); 26 std::map<const std::string,Action*>::iterator getEndIter(); 27 25 28 private: 26 29 std::map<const std::string,Action*> actionMap;
Note:
See TracChangeset
for help on using the changeset viewer.