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
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/emitterBeamRecordHeaderP.h
>
13
#include <
vl/eventId.h
>
14
#include "
pduHeader.h
"
15
16
// Blanking Sector Attribute Record
17
typedef
struct
DtNetBlankingSectorAttributeRecord
:
public
DtNetEmitterBeamRecordHeader
18
{
19
bool
operator==
(
const
DtNetBlankingSectorAttributeRecord
& rhs)
const
20
{
21
return
DtNetEmitterBeamRecordHeader::operator==
(rhs)
22
&& (
myLeftAzimuth
== rhs.
myLeftAzimuth
)
23
&& (
myRightAzimuth
== rhs.
myRightAzimuth
)
24
&& (
myLowerElevation
== rhs.
myLowerElevation
)
25
&& (
myUpperElevation
== rhs.
myUpperElevation
)
26
&& (
myResidualPower
== rhs.
myResidualPower
);
27
}
28
29
bool
operator!=
(
const
DtNetBlankingSectorAttributeRecord
& rhs)
const
30
{
31
return
!
operator==
(rhs);
32
}
33
34
DtNetU8
myPadding_8
;
35
DtNetFloat32
myLeftAzimuth
;
36
DtNetFloat32
myRightAzimuth
;
37
DtNetFloat32
myLowerElevation
;
38
DtNetFloat32
myUpperElevation
;
39
DtNetFloat32
myResidualPower
;
40
DtNetU64
myPadding_64
;
41
42
}
DtNetBlankingSectorAttributeRecord
;
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
)