/* * SetOutputFormatsAction.hpp * * Created on: May 8, 2010 * Author: heber */ #ifndef SETOUTPUTFORMATSACTION_HPP_ #define SETOUTPUTFORMATSACTION_HPP_ #include "Actions/Action.hpp" class WorldSetOutputFormatsAction : public Action { public: WorldSetOutputFormatsAction(); virtual ~WorldSetOutputFormatsAction(); bool canUndo(); bool shouldUndo(); virtual const std::string getName(); private: virtual Dialog * createDialog(); virtual Action::state_ptr performCall(); virtual Action::state_ptr performUndo(Action::state_ptr); virtual Action::state_ptr performRedo(Action::state_ptr); static const char NAME[]; }; #endif /* SETOUTPUTFORMATSACTION_HPP_ */