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
blankingSectorAttributeRecordP.h
Go to the documentation of this file.
1
/*********************************************************************
2
** Copyright (c) 2013 VT MAK
3
** All rights reserved.
4
*********************************************************************/
5
#pragma once
6
10
11
#include <
vlpi/netStructs.h
>
12
#include <
vl/packets/standardVariableRecordP.h
>
13
#include <
vl/eventId.h
>
14
#include "
pduHeader.h
"
15
16
// Blanking Sector Attribute Record
17
typedef
struct
DtNetBlankingSectorAttributeRecord
:
public
DtNetStandardVariableRecord
18
{
19
bool
operator==
(
const
DtNetBlankingSectorAttributeRecord
& rhs)
const
20
{
21
return
(
myRecordType
== rhs.
myRecordType
)
22
&& (
myRecordLength
== rhs.
myRecordLength
)
23
&& (
myEmitterNumber
== rhs.
myEmitterNumber
)
24
&& (
myBeamNumber
== rhs.
myBeamNumber
)
25
&& (
myStateIndicator
== rhs.
myStateIndicator
)
26
&& (
myLeftAzimuth
== rhs.
myLeftAzimuth
)
27
&& (
myRightAzimuth
== rhs.
myRightAzimuth
)
28
&& (
myLowerElevation
== rhs.
myLowerElevation
)
29
&& (
myUpperElevation
== rhs.
myUpperElevation
)
30
&& (
myResidualPower
== rhs.
myResidualPower
);
31
}
32
bool
operator!=
(
const
DtNetBlankingSectorAttributeRecord
& rhs)
const
33
{
34
return
!
operator==
(rhs);
35
}
36
37
DtNetU16
myPadding_16
;
38
DtNetU8
myEmitterNumber
;
39
DtNetU8
myBeamNumber
;
40
DtNetU8
myStateIndicator
;
41
DtNetU8
myPadding_8
;
42
DtNetFloat32
myLeftAzimuth
;
43
DtNetFloat32
myRightAzimuth
;
44
DtNetFloat32
myLowerElevation
;
45
DtNetFloat32
myUpperElevation
;
46
DtNetFloat32
myResidualPower
;
47
DtNetU64
myPadding_64
;
48
49
}
DtNetBlankingSectorAttributeRecord
;
Document ID: Generated on Mon Feb 6 18:36:34 EST 2017 from SVN revision 173107
Copyright © 2005-2016 VT MÄK. All Rights Reserved (
www.mak.com
)