VR-Link API Documentation for HLA 1516
Home
Namespaces
Classes
Files
Examples
Libraries
File List
File Members
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 Wed Oct 23 22:25:48 EDT 2013 from SVN revision 132765
Copyright © 2005-2013 VT MÄK. All Rights Reserved (
www.mak.com
)