/* * MolecularVolumeAction.hpp * * Created on: May 12, 2010 * Author: heber */ #ifndef MOLECULARVOLUMEACTION_HPP_ #define MOLECULARVOLUMEACTION_HPP_ #include "Actions/Action.hpp" class AnalysisMolecularVolumeAction : public Action { public: AnalysisMolecularVolumeAction(); virtual ~AnalysisMolecularVolumeAction(); bool canUndo(); bool shouldUndo(); virtual const std::string getName(); private: 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 /* MOLECULARVOLUMEACTION_HPP_ */