![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /******************************************************************************* 00002 ** Copyright (c) 2006 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 *******************************************************************************/ 00005 /******************************************************************************* 00006 ** $RCSfile: ifDeletePlan.h,v $ $Revision: 1.3 $ $State: Exp $ 00007 *******************************************************************************/ 00008 00011 00013 00014 #ifndef ifDeletePlan_h 00015 #define ifDeletePlan_h 00016 00017 #include <vrfExtProtocol/ifaceCont.h> 00018 #include "vrfmsgs/vrfmsgsDefines.h" 00019 #include <vlutil/vlString.h> 00020 00024 class DT_DLL_vrfmsgs DtIfDeletePlan : public DtSimInterfaceContent 00025 { 00026 00027 public: 00029 DtIfDeletePlan(); 00030 00032 DtIfDeletePlan(const DtIfDeletePlan & orig); 00033 00035 const DtIfDeletePlan & operator=(const DtIfDeletePlan & orig); 00036 00037 virtual ~DtIfDeletePlan(); 00038 00039 virtual int type() const; 00040 00041 virtual DtSimInterfaceContent * clone() const; 00042 00044 00045 virtual DtString planName() const; 00046 virtual void setPlanName(const DtString& name); 00048 00051 00052 virtual bool planIsGlobal() const; 00053 virtual void setPlanIsGlobal(bool yesNo); 00055 00056 virtual int netRepSize() const; 00057 virtual bool setFromNet(const char* contentBuffer, 00058 unsigned contentSize); 00059 virtual bool setToNet(); 00060 00061 virtual void printDataToString(DtString& str); 00062 00063 static DtSimInterfaceContent* creator(); 00064 00065 protected: 00066 DtString myPlanName; 00067 DtBoolean myPlanIsGlobal; 00068 }; 00069 00070 #endif 00071