![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /******************************************************************************* 00002 ** Copyright (c) 2001 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 *******************************************************************************/ 00005 /******************************************************************************* 00006 ** $RCSfile: objIdNameEtry.h,v $ $Revision: 1.5 $ $State: Exp $ 00007 *******************************************************************************/ 00008 00011 00012 #ifndef DtObjIdNameEntry_H_ 00013 #define DtObjIdNameEntry_H_ 00014 00015 #include <vl/hostStructs.h> 00016 #include <vlutil/vlString.h> 00017 00022 00023 #include "vrfmsgs/vrfmsgsDefines.h" 00024 class DT_DLL_vrfmsgs DtObjIdNameEntry 00025 { 00026 public: 00027 00029 DtObjIdNameEntry(); 00030 00032 DtObjIdNameEntry(const DtEntityIdentifier& objectIdentifier, 00033 const DtString& objectName = DtString::nullString()); 00034 00036 virtual ~DtObjIdNameEntry(); 00037 00039 DtObjIdNameEntry(const DtObjIdNameEntry& orig); 00040 00042 DtObjIdNameEntry& operator=(const DtObjIdNameEntry& orig); 00043 00045 virtual void setObjectIdentifier(const DtEntityIdentifier& objectIdentifier); 00046 virtual const DtEntityIdentifier& objectIdentifier() const; 00047 00049 virtual void setObjectName(const DtString& objectName); 00050 virtual const DtString & objectName() const; 00051 00052 protected: 00053 00054 DtEntityIdentifier myObjectIdentifier; 00055 DtString myObjectName; 00056 }; 00057 00058 #endif