![]() |
VR-Link API Documentation for DIS
|
00001 /********************************************************************* 00002 ** Copyright (c) 1992-2010 VT MAK 00003 ** All rights reserved. 00004 *********************************************************************/ 00005 00006 00009 00010 #ifndef DtSystemHashKey_H_ 00011 #define DtSystemHashKey_H_ 00012 00013 #include "globalObjDes.h" 00014 #include "glbObjDesHashKey.h" 00015 00018 class DT_DLL_VL DtSystemHashKey : public DtBaseHashKey 00019 { 00020 00021 public: 00022 00024 DtSystemHashKey(); 00025 00027 DtSystemHashKey(const DtGlobalObjectDesignator& id, int systemId); 00028 00030 virtual ~DtSystemHashKey(); 00031 00033 DtSystemHashKey(const DtSystemHashKey& orig); 00034 00036 DtSystemHashKey& operator=(const DtSystemHashKey& orig); 00037 00039 virtual DtBaseHashKey* clone() const; 00040 00042 virtual int value() const; 00043 00045 virtual const DtString stringRep() const; 00046 00047 protected: 00048 00050 virtual DtU32 computeHashValue(); 00051 00052 protected: 00053 00054 DtGlobalObjectDesignatorHashKey myDesHashKey; 00055 int mySystemId; 00056 00057 }; 00058 00059 #endif 00060