/* * MethodAction.cpp * * Created on: Dec 11, 2009 * Author: crueger */ #include #include #include "MethodAction.hpp" using namespace std; MethodAction::MethodAction(boost::function _executeMethod) : executeMethod(_executeMethod) { } MethodAction::~MethodAction() { // TODO Auto-generated destructor stub } void MethodAction::call() { executeMethod(); } void MethodAction::undo() { } bool MethodAction::canUndo() { return false; }