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
packets
standardVariableRecordP.h
Go to the documentation of this file.
1
/****************************************************************************
2
* Copyright (c) 2013 VT MAK
3
* All rights reserved.
4
****************************************************************************/
5
9
10
#pragma once
11
12
#include <
vlutil/vlNetTypes.h
>
13
14
typedef
struct
DtNetStandardVariableRecord
15
{
16
17
bool
operator ==
(
const
DtNetStandardVariableRecord
& rhs )
const
18
{
19
return
(
myRecordType
== rhs.
myRecordType
)
20
&& (
myRecordLength
== rhs.
myRecordLength
);
21
}
22
23
bool
operator !=
(
const
DtNetStandardVariableRecord
& rhs )
const
24
{
25
return
!( *
this
== rhs );
26
}
27
28
DtNetU32
myRecordType
;
29
DtNetU16
myRecordLength
;
30
}
DtNetStandardVariableRecord
;
31
32
typedef
struct
DtNetStandardVariableRecordSet
33
{
34
DtNetU16
myNumberOfStandardVariableRecords
;
35
}
DtNetStandardVariableRecordSet
;
Document ID: Generated on Fri Dec 2 02:42:08 EST 2016 from SVN revision 171416
Copyright © 2005-2016 VT MÄK. All Rights Reserved (
www.mak.com
)