Main Page | Modules | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

DC_DummyRecoveryAction.cpp

00001 // 00002 // Copyright 2004 P&P Software GmbH - All Rights Reserved 00003 // 00004 // DC_DummyRecoveryAction.cpp 00005 // 00006 // Version 1.0 00007 // Date 25.06.03 00008 // Author R. Totaro 00009 00010 #include "../GeneralInclude/CompilerSwitches.h" 00011 #include "../GeneralInclude/ClassId.h" 00012 #include "../GeneralInclude/Constants.h" 00013 #include "../Base/CC_RootObject.h" 00014 #include "DC_DummyRecoveryAction.h" 00015 00016 DC_DummyRecoveryAction::DC_DummyRecoveryAction(void) { 00017 actionCanExecute=true; 00018 actionOutcome=ACTION_SUCCESS; 00019 setClassId(ID_DUMMYRECOVERYACTION); 00020 } 00021 00022 TD_ActionOutcome DC_DummyRecoveryAction::doRecoveryAction(void) { 00023 return actionOutcome; 00024 } 00025 00026 bool DC_DummyRecoveryAction::canExecute(void) { 00027 return actionCanExecute; 00028 } 00029 00030 void DC_DummyRecoveryAction::setActionOutcome(TD_ActionOutcome nextOutcome) { 00031 actionOutcome=nextOutcome; 00032 } 00033 00034 void DC_DummyRecoveryAction::setExecutionFlag(bool canExecute) { 00035 actionCanExecute=canExecute; 00036 }
Copyright 2003 P&P Software GmbH - All Rights Reserved