Ignore:
Timestamp:
Jan 7, 2010, 2:46:34 PM (16 years ago)
Author:
Tillmann Crueger <crueger@…>
Children:
d97af9
Parents:
34ff5e6
Message:

Added a central registry that allows access to actions by name.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/Actions/MakroAction.cpp

    r34ff5e6 r3e8325  
    66 */
    77
     8#include <string>
     9
    810#include "Actions/MakroAction.hpp"
    911#include "Actions/Action.hpp"
    1012#include "Actions/ActionSequence.hpp"
    1113
    12 MakroAction::MakroAction(ActionSequence* _actions) :
     14using namespace std;
     15
     16MakroAction::MakroAction(string _name,ActionSequence* _actions,bool _doRegister) :
     17Action(_name,_doRegister),
    1318actions(_actions)
    1419{
Note: See TracChangeset for help on using the changeset viewer.