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

FsmState.cpp

00001 // 00002 // Copyright 2004 P&P Software GmbH - All Rights Reserved 00003 // 00004 // FsmState.cpp 00005 // 00006 // Version 1.0 00007 // Date 02.10.02 00008 // Author A. Pasetti (P&P Software) 00009 00010 #include "../GeneralInclude/CompilerSwitches.h" 00011 #include "../GeneralInclude/Constants.h" 00012 #include "FsmState.h" 00013 00014 FsmState::FsmState(void) { 00015 pNextState = pNULL; 00016 } 00017 00018 bool FsmState::canEnter(void) { 00019 return true; 00020 } 00021 00022 void FsmState::doInit(void) { 00023 return; 00024 } 00025 00026 bool FsmState::canExit(void) { 00027 return true; 00028 } 00029 00030 void FsmState::doExit(void) { 00031 return; 00032 } 00033 00034 bool FsmState::isFinished(void) { 00035 return false; 00036 }
Copyright 2003 P&P Software GmbH - All Rights Reserved