Changeset 53d01c for src/Actions/CommandAction/HelpAction.cpp
- Timestamp:
- Aug 28, 2010, 12:57:56 AM (15 years ago)
- Branches:
- Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, AddingActions_SaveParseParticleParameters, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_ParticleName_to_Atom, Adding_StructOpt_integration_tests, AtomFragments, Automaking_mpqc_open, AutomationFragmentation_failures, Candidate_v1.5.4, Candidate_v1.6.0, Candidate_v1.6.1, Candidate_v1.7.0, ChangeBugEmailaddress, ChangingTestPorts, ChemicalSpaceEvaluator, CombiningParticlePotentialParsing, Combining_Subpackages, Debian_Package_split, Debian_package_split_molecuildergui_only, Disabling_MemDebug, Docu_Python_wait, EmpiricalPotential_contain_HomologyGraph, EmpiricalPotential_contain_HomologyGraph_documentation, Enable_parallel_make_install, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, FitPartialCharges_GlobalError, Fix_BoundInBox_CenterInBox_MoleculeActions, Fix_ChargeSampling_PBC, Fix_ChronosMutex, Fix_FitPartialCharges, Fix_FitPotential_needs_atomicnumbers, Fix_ForceAnnealing, Fix_IndependentFragmentGrids, Fix_ParseParticles, Fix_ParseParticles_split_forward_backward_Actions, Fix_PopActions, Fix_QtFragmentList_sorted_selection, Fix_Restrictedkeyset_FragmentMolecule, Fix_StatusMsg, Fix_StepWorldTime_single_argument, Fix_Verbose_Codepatterns, Fix_fitting_potentials, Fixes, ForceAnnealing_goodresults, ForceAnnealing_oldresults, ForceAnnealing_tocheck, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, FragmentAction_writes_AtomFragments, FragmentMolecule_checks_bonddegrees, GeometryObjects, Gui_Fixes, Gui_displays_atomic_force_velocity, ImplicitCharges, IndependentFragmentGrids, IndependentFragmentGrids_IndividualZeroInstances, IndependentFragmentGrids_IntegrationTest, IndependentFragmentGrids_Sole_NN_Calculation, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, JobMarket_unresolvable_hostname_fix, MoreRobust_FragmentAutomation, ODR_violation_mpqc_open, PartialCharges_OrthogonalSummation, PdbParser_setsAtomName, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, Rewrite_FitPartialCharges, RotateToPrincipalAxisSystem_UndoRedo, SaturateAtoms_findBestMatching, SaturateAtoms_singleDegree, StoppableMakroAction, Subpackage_CodePatterns, Subpackage_JobMarket, Subpackage_LinearAlgebra, Subpackage_levmar, Subpackage_mpqc_open, Subpackage_vmg, Switchable_LogView, ThirdParty_MPQC_rebuilt_buildsystem, TrajectoryDependenant_MaxOrder, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps, TremoloParser_setsAtomName, Ubuntu_1604_changes, stable
- Children:
- 1fd675
- Parents:
- 8bb05e
- git-author:
- Frederik Heber <heber@…> (08/26/10 18:59:34)
- git-committer:
- Frederik Heber <heber@…> (08/28/10 00:57:56)
- File:
-
- 1 moved
-
src/Actions/CommandAction/HelpAction.cpp (moved) (moved from src/Actions/CmdAction/HelpAction.cpp ) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/CommandAction/HelpAction.cpp
r8bb05e r53d01c 20 20 #include "Helpers/MemDebug.hpp" 21 21 22 #include "Actions/C mdAction/HelpAction.hpp"22 #include "Actions/CommandAction/HelpAction.hpp" 23 23 #include "Actions/ActionRegistry.hpp" 24 24 #include "CommandLineParser.hpp" … … 33 33 #include "Actions/ValueStorage.hpp" 34 34 35 const char Command LineHelpAction::NAME[] = "help";35 const char CommandHelpAction::NAME[] = "help"; 36 36 37 Command LineHelpAction::CommandLineHelpAction() :37 CommandHelpAction::CommandHelpAction() : 38 38 Action(NAME) 39 39 {} 40 40 41 Command LineHelpAction::~CommandLineHelpAction()41 CommandHelpAction::~CommandHelpAction() 42 42 {} 43 43 44 44 void CommandHelp() { 45 ActionRegistry::getInstance().getActionByName(Command LineHelpAction::NAME)->call(Action::NonInteractive);45 ActionRegistry::getInstance().getActionByName(CommandHelpAction::NAME)->call(Action::NonInteractive); 46 46 }; 47 47 48 void Command LineHelpAction::getParametersfromValueStorage()48 void CommandHelpAction::getParametersfromValueStorage() 49 49 {}; 50 50 51 Dialog* Command LineHelpAction::fillDialog(Dialog *dialog) {51 Dialog* CommandHelpAction::fillDialog(Dialog *dialog) { 52 52 ASSERT(dialog,"No Dialog given when filling action dialog"); 53 53 … … 59 59 } 60 60 61 Action::state_ptr Command LineHelpAction::performCall() {61 Action::state_ptr CommandHelpAction::performCall() { 62 62 return Action::success; 63 63 } 64 64 65 Action::state_ptr Command LineHelpAction::performUndo(Action::state_ptr _state) {65 Action::state_ptr CommandHelpAction::performUndo(Action::state_ptr _state) { 66 66 return Action::success; 67 67 } 68 68 69 Action::state_ptr Command LineHelpAction::performRedo(Action::state_ptr _state){69 Action::state_ptr CommandHelpAction::performRedo(Action::state_ptr _state){ 70 70 return Action::success; 71 71 } 72 72 73 bool Command LineHelpAction::canUndo() {73 bool CommandHelpAction::canUndo() { 74 74 return true; 75 75 } 76 76 77 bool Command LineHelpAction::shouldUndo() {77 bool CommandHelpAction::shouldUndo() { 78 78 return false; 79 79 } 80 80 81 const string Command LineHelpAction::getName() {81 const string CommandHelpAction::getName() { 82 82 return NAME; 83 83 }
Note:
See TracChangeset
for help on using the changeset viewer.
