![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /******************************************************************************* 00002 ** Copyright (c) 2006 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 *******************************************************************************/ 00005 /******************************************************************************* 00006 ** $RCSfile: ifGlobalPlanList.h,v $ $Revision: 1.2 $ $State: Exp $ 00007 *******************************************************************************/ 00008 00011 00013 00014 #ifndef ifGlobalPlanList_h 00015 #define ifGlobalPlanList_h 00016 00017 #include <vrfExtProtocol/ifaceCont.h> 00018 #include "vrfmsgs/vrfmsgsDefines.h" 00019 #include <vector> 00020 00023 class DT_DLL_vrfmsgs DtIfGlobalPlanList : public DtSimInterfaceContent 00024 { 00025 00026 public: 00028 DtIfGlobalPlanList(); 00029 00031 DtIfGlobalPlanList(const DtIfGlobalPlanList & orig); 00032 00034 const DtIfGlobalPlanList & operator=(const DtIfGlobalPlanList & orig); 00035 00036 virtual ~DtIfGlobalPlanList(); 00037 00038 virtual int type() const; 00039 00040 virtual DtSimInterfaceContent * clone() const; 00041 00043 00044 virtual const std::vector<DtString>& planNames() const; 00045 virtual std::vector<DtString>& planNames(); 00047 00048 virtual int netRepSize() const; 00049 virtual bool setFromNet(const char* contentBuffer, 00050 unsigned contentSize); 00051 virtual bool setToNet(); 00052 00053 virtual void printDataToString(DtString& str); 00054 00055 static DtSimInterfaceContent* creator(); 00056 00057 protected: 00058 std::vector<DtString> myPlanNames; 00059 }; 00060 00061 #endif 00062