![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /******************************************************************************* 00002 ** Copyright (c) 2006 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 *******************************************************************************/ 00005 /******************************************************************************* 00006 ** $RCSfile: noopCommand.h,v $ $Revision: 1.1 $ $State: Exp $ 00007 *******************************************************************************/ 00008 00011 00013 00014 #ifndef noopCommand_h 00015 #define noopCommand_h 00016 00017 #include "vrfplan/simCommand.h" 00018 #include "vrfplan/vrfplanDefines.h" 00019 00021 class DT_DLL_vrfplan DtNoopCommand : public DtSimCommand 00022 { 00023 public: 00025 DtNoopCommand(); 00026 00028 DtNoopCommand(const DtString& writeName, 00029 DtReaderWriterRegistry* parentRegistry = NULL); 00030 00032 DtNoopCommand(const DtString & writeName, const DtNoopCommand& orig, 00033 DtReaderWriterRegistry* parentRegistry = NULL); 00034 00036 virtual ~DtNoopCommand(); 00037 00039 DtNoopCommand& operator=(const DtNoopCommand& orig); 00040 00042 int type() const; 00043 00045 virtual DtSimCommand * clone(const DtString & name, DtReaderWriterRegistry * 00046 parentRegistry = 0) const; 00047 00049 virtual DtString stringRep() const; 00050 00052 virtual int netRepSize() const; 00053 00055 virtual bool setFromNet(const char* contentBuffer, 00056 unsigned contentSize); 00057 00059 virtual bool setToNet(); 00060 00062 static DtSimCommand* creator(); 00063 00064 protected: 00065 }; 00066 00067 #endif