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/MethodAction.cpp

    r34ff5e6 r3e8325  
    88#include <iostream>
    99#include <boost/function.hpp>
     10#include <string>
    1011
    1112#include "MethodAction.hpp"
     
    1314using namespace std;
    1415
    15 MethodAction::MethodAction(boost::function<void()> _executeMethod) :
     16MethodAction::MethodAction(string _name,boost::function<void()> _executeMethod,bool _doRegister) :
     17   Action(_name,_doRegister),
    1618executeMethod(_executeMethod)
    1719{
Note: See TracChangeset for help on using the changeset viewer.