![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /******************************************************************************* 00002 ** Copyright (c) 2008 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 *******************************************************************************/ 00005 /******************************************************************************* 00006 ** $RCSfile: ifDIGuyAppearAndAnimationsQuery.h,v $ $Revision: 1.3 $ $State: Exp $ 00007 ** Created: 4/24/08 MEM 00008 *******************************************************************************/ 00009 00012 00013 #ifndef ifDIGuyAppearAndAnimationsQuery_H_ 00014 #define ifDIGuyAppearAndAnimationsQuery_H_ 00015 00016 #include <vrfExtProtocol/ifaceCont.h> 00017 #include "vrfmsgs/vrfmsgsDefines.h" 00018 #include <vlutil/vlNetTypes.h> 00019 00020 #include <vector> 00021 00022 class DT_DLL_vrfmsgs DtIfDIGuyAppearAndAnimationsQuery : public DtSimInterfaceContent 00023 { 00024 00025 public: 00027 DtIfDIGuyAppearAndAnimationsQuery(); 00028 00030 DtIfDIGuyAppearAndAnimationsQuery(const DtIfDIGuyAppearAndAnimationsQuery & orig); 00031 00033 const DtIfDIGuyAppearAndAnimationsQuery & operator=(const DtIfDIGuyAppearAndAnimationsQuery & orig); 00034 00035 virtual ~DtIfDIGuyAppearAndAnimationsQuery(); 00036 00037 virtual int type() const; 00038 00039 virtual DtSimInterfaceContent * clone() const; 00040 00041 virtual void setEntityNameString(const DtString& entityNameString); 00042 virtual void setEntityNames(const std::vector<DtString>& entityNames); 00043 virtual void addEntity(const DtString&); 00044 virtual void removeEntity(const DtString&); 00045 00046 const std::vector<DtString>& entityNames() const 00047 { 00048 return myEntityNames; 00049 } 00050 00051 virtual int netRepSize() const; 00052 virtual bool setFromNet(const char* contentBuffer, 00053 unsigned contentSize); 00054 virtual bool setToNet(); 00055 00056 virtual void printDataToString(DtString& str); 00057 00058 static DtSimInterfaceContent* creator(); 00059 00060 protected: 00061 std::vector<DtString> myEntityNames; 00062 }; 00063 00064 #endif 00065