![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /******************************************************************************* 00002 ** Copyright (c) 2002 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 *******************************************************************************/ 00005 /******************************************************************************* 00006 ** $RCSfile: backendMapEntry.h,v $ $Revision: 1.1 $ $State: Exp $ 00007 *******************************************************************************/ 00008 00011 00012 00013 #ifndef DtBackendMapEntry_H_ 00014 #define DtBackendMapEntry_H_ 00015 00016 #include <vlpi/simulationAddress.h> 00017 00022 00023 #include "vrfutil/vrfutilDefines.h" 00024 class DT_DLL_vrfutil DtBackendMapEntry 00025 { 00026 public: 00027 00029 DtBackendMapEntry(); 00030 00031 DtBackendMapEntry(const DtSimulationAddress& fromAddress, 00032 const DtSimulationAddress& toAddress); 00033 00035 virtual ~DtBackendMapEntry(); 00036 00038 virtual const DtSimulationAddress& fromAddress(); 00039 00041 virtual const DtSimulationAddress& toAddress(); 00042 00044 virtual void mapTo(const DtSimulationAddress& toAddress); 00045 00046 protected: 00048 DtBackendMapEntry(const DtBackendMapEntry & orig); 00049 00051 DtBackendMapEntry& operator=(const DtBackendMapEntry& orig); 00052 00053 protected: 00054 00055 DtSimulationAddress myFromAddress; 00056 DtSimulationAddress myToAddress; 00057 }; 00058 00059 #endif