VR-Link API Documentation for HLA 1.3
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
iffSystemHashKey.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
#pragma once
11
12
#include "
globalObjectDesignator.h
"
13
#include "
vlpi/entityIdentifierHashKey.h
"
14
17
class
DT_DLL_VL
DtIFFSystemHashKey
:
public
DtBaseHashKey
18
{
19
20
public
:
21
23
DtIFFSystemHashKey
();
24
26
DtIFFSystemHashKey
(
const
DtEntityIdentifier
&
id
,
27
DtU16
systemType,
DtU16
systemName,
DtU8
systemDesignator );
28
30
virtual
~
DtIFFSystemHashKey
();
31
33
DtIFFSystemHashKey
(
const
DtIFFSystemHashKey
& orig);
34
36
DtIFFSystemHashKey
&
operator=
(
const
DtIFFSystemHashKey
& orig);
37
39
virtual
DtBaseHashKey
*
clone
()
const
;
40
42
virtual
int
value()
const
;
43
45
virtual
DtHashKeyType
hashKeyType
()
const
{
return
DtIFFSystemHashKeyType
;}
46
48
virtual
const
DtString
stringRep
()
const
;
49
51
virtual
DtU64
systemType
()
const
{
return
mySystemType; }
52
virtual
void
setSystemType
(
DtU64
val) { mySystemType = val; }
53
virtual
DtU64
systemName
()
const
{
return
mySystemName; }
54
virtual
void
setSystemName
(
DtU64
val) { mySystemName = val; }
55
virtual
DtU64
systemDesignator
()
const
{
return
mySystemDesignator; }
56
virtual
void
setSystemDesignator
(
DtU64
val) { mySystemDesignator = val; }
57
58
protected
:
59
61
virtual
DtU64
computeHashValue
();
62
63
protected
:
64
65
DtEntityIdentifierHashKey
myEntityHashKey
;
66
DtU64
mySystemType
;
67
DtU64
mySystemName
;
68
DtU64
mySystemDesignator
;
69
};
70
71
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
)