VR-Link API Documentation for HLA 1516
Home
Namespaces
Classes
Files
Examples
Libraries
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
include
vl
objectIdHashKey.h
Go to the documentation of this file.
1
/*******************************************************************************
2
** Copyright (c) 1992-2010 VT MAK
3
** All rights reserved.
4
*******************************************************************************/
5
6
9
10
#ifndef DtObjectIdHashKey_H_
11
#define DtObjectIdHashKey_H_
12
13
#if DtHLA
14
15
#include <
vlutil/vlHashKeys.h
>
16
#include "
objectId.h
"
17
22
class
DT_DLL_VL
DtObjectIdHashKey
:
public
DtBaseHashKey
23
{
24
public
:
25
27
DtObjectIdHashKey
();
28
30
DtObjectIdHashKey
(
const
DtObjectId
&
id
);
31
33
virtual
~
DtObjectIdHashKey
();
34
36
DtObjectIdHashKey
(
const
DtObjectIdHashKey
& orig);
37
39
DtObjectIdHashKey
&
operator=
(
const
DtObjectIdHashKey
& orig);
40
43
virtual
bool
operator==
(
const
DtBaseHashKey
& other)
const
;
44
46
virtual
DtBaseHashKey
*
clone
()
const
;
47
49
virtual
const
DtObjectId
& value()
const
;
50
52
virtual
DtHashKeyType
hashKeyType
()
const
{
return
DtObjectIdHashKeyType
;}
53
54
protected
:
55
57
virtual
const
DtString
stringRep
()
const
;
58
60
virtual
DtU64
computeHashValue
();
61
62
protected
:
63
DtObjectId
myId
;
64
};
65
66
#else
67
68
#include <
vlpi/entityIdentifierHashKey.h
>
69
70
typedef
DtEntityIdentifierHashKey
DtObjectIdHashKey
;
71
72
#endif
73
74
#endif
75
76
Document ID: Generated on Mon Jun 22 21:18:40 EDT 2020 from SVN revision 213785
Copyright © 2005-2018 MAK Technologies. All Rights Reserved (
www.mak.com
)