Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/ActionRegistry.cpp

    rd56640 r97ebf8  
    4343}
    4444
     45void ActionRegistry::unregisterAction(Action* action){
     46  actionMap.erase(action->getName());
     47}
     48
     49std::map<const std::string,Action*>::iterator ActionRegistry::getBeginIter()
     50{
     51  return actionMap.begin();
     52}
     53
     54std::map<const std::string,Action*>::iterator ActionRegistry::getEndIter()
     55{
     56  return actionMap.end();
     57}
     58
    4559CONSTRUCT_SINGLETON(ActionRegistry)
Note: See TracChangeset for help on using the changeset viewer.