![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /******************************************************************************* 00002 ** Copyright (c) 2006 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 *******************************************************************************/ 00005 /******************************************************************************* 00006 ** $RCSfile: objMapEntry.h,v $ $Revision: 1.1 $ $State: Exp $ 00007 *******************************************************************************/ 00008 00011 00012 #ifndef DtObjectMapEntry_H_ 00013 #define DtObjectMapEntry_H_ 00014 00015 #include "vrfutil/rdrWritr.h" 00016 #include <vl/hostStructs.h> 00017 #include "vrfutil/rwString.h" 00018 #include "vrfutil/rwSimAddress.h" 00019 00020 00026 00027 #include "vrfutil/vrfutilDefines.h" 00028 class DT_DLL_vrfutil DtObjectMapEntry : public DtReaderWriter 00029 { 00030 public: 00031 00033 DtObjectMapEntry(); 00034 00035 DtObjectMapEntry(const DtString& name, const DtSimulationAddress& address); 00036 00037 DtObjectMapEntry(const DtString & name, DtReaderWriterRegistry * 00038 parentRegistry = 0); 00039 00041 virtual ~DtObjectMapEntry(); 00042 00044 DtObjectMapEntry(const DtString & name, const DtObjectMapEntry & orig, 00045 DtReaderWriterRegistry * parentRegistry = 0); 00046 00048 DtObjectMapEntry& operator=(const DtObjectMapEntry& orig); 00049 00050 virtual DtObjectMapEntry * clone(const DtString & name, 00051 DtReaderWriterRegistry * parentRegistry = 0) const; 00052 00054 virtual const DtSimulationAddress& address(); 00055 00057 virtual void setAddress(const DtSimulationAddress& address); 00058 00060 virtual const DtString& name(); 00061 00062 protected: 00063 00064 DtRwSimulationAddress myAddress; 00065 DtRwString myName; 00066 }; 00067 00068 #endif