![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /******************************************************************************* 00002 ** Copyright (c) 2005 MaK Technologies, Inc. 00003 ** All rights reserved. 00004 *******************************************************************************/ 00005 /******************************************************************************* 00006 ** $RCSfile: verticalLandingTask.h,v $ $Revision: 1.4 $ $State: Exp $ 00007 *******************************************************************************/ 00008 00011 00013 00014 #ifndef verticalLandingTask_H_ 00015 #define verticalLandingTask_H_ 00016 00017 #include "vrftasks/simTask.h" 00018 #include <vlutil/vlNetTypes.h> 00019 #include "vrfutil/rwString.h" 00020 #include "vrfutil/rwVector.h" 00021 #include "vrfutil/rwBoolean.h" 00022 #include <vlpi/NetStructs.h> 00023 00026 00027 struct DtNetVerticalLandingTask 00028 { 00029 DtNetU8 myControlObjectNameLength; 00030 }; 00031 00036 #include "vrftasks/vrftasksDefines.h" 00037 class DT_DLL_vrftasks DtVerticalLandingTask : public DtSimTask 00038 { 00039 00040 public: 00041 00043 DtVerticalLandingTask(); 00044 00047 DtVerticalLandingTask(const DtString & writeName, 00048 DtReaderWriterRegistry * parentRegistry = 0); 00049 00051 DtVerticalLandingTask(const DtString & writeName, const 00052 DtVerticalLandingTask & orig, DtReaderWriterRegistry * 00053 parentRegistry = 0); 00054 00056 const DtVerticalLandingTask & operator=(const 00057 DtVerticalLandingTask & orig); 00058 00059 virtual ~DtVerticalLandingTask(); 00060 00062 virtual int type() const; 00063 00065 virtual DtSimTask * clone(const DtString & name, DtReaderWriterRegistry * 00066 parentRegistry = 0) const; 00067 00069 virtual DtString stringRep() const; 00070 00072 virtual void setControlObjectName(const DtString& name); 00073 virtual const DtString& controlObjectName() const; 00074 00077 virtual int netRepSize() const; 00078 00080 virtual bool setFromNet(const char* contentBuffer, 00081 unsigned contentSize); 00082 00085 virtual bool setToNet(); 00086 00087 static DtSimTask * creator(); 00088 00089 protected: 00090 DtRwString myControlObjectName; 00091 }; 00092 00093 00094 #endif