VR-Link API Documentation for DIS
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
packets
communicationsNodeIdRecordP.h
Go to the documentation of this file.
1
/*********************************************************************
2
** Copyright (c) 2013 VT MAK
3
** All rights reserved.
4
*********************************************************************/
5
6
#pragma once
7
8
#include <
vlpi/netStructs.h
>
9
14
typedef
struct
DtNetCommunicationsNodeIdRecord
15
{
16
bool
operator==
(
const
DtNetCommunicationsNodeIdRecord
& rhs)
const
17
{
18
return
(
myEntityId
== rhs.
myEntityId
)
19
&& (
myElementId
== rhs.
myElementId
);
20
}
21
bool
operator!=
(
const
DtNetCommunicationsNodeIdRecord
& rhs)
const
22
{
23
return
!
operator==
(rhs);
24
}
25
DtNetEntityIdentifier
myEntityId
;
26
DtNetU16
myElementId
;
27
}
DtNetCommunicationsNodeIdRecord
;
Document ID: Generated on Wed Jan 7 13:31:29 EST 2015 from SVN revision 149162
Copyright © 2005-2014 VT MÄK. All Rights Reserved (
www.mak.com
)