/* * AllMoleculesAction.hpp * * Created on: May 12, 2010 * Author: heber */ #ifndef ALLMOLECULESSACTION_HPP_ #define ALLMOLECULESSACTION_HPP_ #include "Actions/Action.hpp" class SelectionAllMoleculesAction : public Action { public: SelectionAllMoleculesAction(); virtual ~SelectionAllMoleculesAction(); 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 /* ALLMOLECULESSACTION_HPP_ */