![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /******************************************************************************* 00002 ** Copyright (c) 2007 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 *******************************************************************************/ 00005 /******************************************************************************* 00006 ** $RCSfile: setAutoLaunchEnabled.h,v $ $Revision: 108016 $ $State: Exp $ 00007 ** Created: 7/22/11 MEM 00008 *******************************************************************************/ 00009 00012 00018 00019 #pragma once 00020 00021 #include "vrftasks/setDataReq.h" 00022 #include "vrfutil/rwBoolean.h" 00023 00031 #include "vrftasks/vrftasksDefines.h" 00032 class DT_DLL_vrftasks DtSetAutoLaunchEnabledRequest : public DtSetDataRequest 00033 { 00034 00035 public: 00036 00038 DtSetAutoLaunchEnabledRequest(); 00039 00042 DtSetAutoLaunchEnabledRequest(const DtString & writeName, 00043 DtReaderWriterRegistry * parentRegistry = 0); 00044 00046 DtSetAutoLaunchEnabledRequest(const DtString & writeName, const DtSetAutoLaunchEnabledRequest & 00047 orig, DtReaderWriterRegistry * parentRegistry = 0); 00048 00050 const DtSetAutoLaunchEnabledRequest & operator=(const DtSetAutoLaunchEnabledRequest & orig); 00051 00052 virtual ~DtSetAutoLaunchEnabledRequest(); 00053 00055 virtual int type() const; 00056 00058 virtual DtSetDataRequest * clone(const DtString & name, 00059 DtReaderWriterRegistry * parentRegistry = 0) const; 00060 00062 virtual DtString stringRep() const; 00063 00064 virtual bool autoLaunchEnabled() const; 00065 virtual void setAutoLaunchEnabled(bool enabled); 00066 00069 virtual int netRepSize() const; 00070 00072 virtual bool setFromNet(const char* contentBuffer, 00073 unsigned contentSize); 00074 00077 virtual bool setToNet(); 00078 00079 static DtSetDataRequest * creator(); 00080 00081 protected: 00082 00083 DtRwBoolean myAutoLaunchEnabled; 00084 00085 }; 00086 00087