![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /******************************************************************************* 00002 ** Copyright (c) 2006 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 *******************************************************************************/ 00005 /******************************************************************************* 00006 ** $RCSfile: patrolBetweenPointsTaskState.h,v $ $Revision: 1.1 $ $State: Exp $ 00007 *******************************************************************************/ 00008 00011 00014 00015 #ifndef patrolBetweenPointsTaskState_H_ 00016 #define patrolBetweenPointsTaskState_H_ 00017 00018 #include "vrftasks/simTaskState.h" 00019 #include "vrftasks/vrftasksDefines.h" 00020 #include "vrfutil/rwBoolean.h" 00021 00022 class DT_DLL_vrftasks DtPatrolBetweenPointsTaskState : public DtSimTaskState 00023 { 00024 00025 public: 00026 00028 DtPatrolBetweenPointsTaskState(); 00029 00032 DtPatrolBetweenPointsTaskState(const DtString & writeName, 00033 DtReaderWriterRegistry * parentRegistry = 0); 00034 00036 DtPatrolBetweenPointsTaskState(const DtString & writeName, const DtPatrolBetweenPointsTaskState & orig, 00037 DtReaderWriterRegistry * parentRegistry = 0); 00038 00040 const DtPatrolBetweenPointsTaskState & operator=(const DtPatrolBetweenPointsTaskState & orig); 00041 00042 virtual ~DtPatrolBetweenPointsTaskState(); 00043 00045 virtual int type() const; 00046 00048 virtual DtSimTaskState * clone(const DtString & name, DtReaderWriterRegistry * 00049 parentRegistry = 0) const; 00050 00052 virtual DtString stringRep() const; 00053 00057 virtual void setMovingInReverseDirection(bool yesNo); 00058 virtual bool movingInReverseDirection() const; 00060 00061 static DtSimTaskState * creator(); 00062 00063 protected: 00064 00065 DtRwBoolean myMovingInReverseDirection; 00066 }; 00067 00068 00069 #endif