MAK RTIspy API Documentation for HLA 1516
Home
Modules
Namespaces
Classes
Files
Examples
Libraries
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
include
HLA1516
RTI
RangeBounds.h
Go to the documentation of this file.
1
/***********************************************************************
2
IEEE 1516.1 High Level Architecture Interface Specification C++ API
3
File: RTI/RangeBounds.h
4
***********************************************************************/
5
6
#ifndef RTI_RangeBounds_h
7
#define RTI_RangeBounds_h
8
9
#include <
RTI/SpecificConfig.h
>
10
11
namespace
rti1516
12
{
13
class
RTI_EXPORT
RangeBounds
14
{
15
public
:
16
RangeBounds
();
17
18
RangeBounds
(
unsigned
long
lowerBound,
19
unsigned
long
upperBound);
20
21
~
RangeBounds
()
22
throw
();
23
24
RangeBounds
(
RangeBounds
const
& rhs);
25
26
RangeBounds
&
27
operator=(
RangeBounds
const
& rhs);
28
29
unsigned
long
30
getLowerBound()
const
;
31
32
unsigned
long
33
getUpperBound()
const
;
34
35
void
36
setLowerBound(
unsigned
long
lowerBound);
37
38
void
39
setUpperBound(
unsigned
long
upperBound);
40
41
private
:
42
unsigned
long
_lowerBound
;
43
unsigned
long
_upperBound
;
44
};
45
}
46
47
#endif // RTI_RangeBounds_h
Document ID: Generated on Fri Sep 27 00:57:56 EDT 2019 from SVN revision 201708
Copyright © 2005-2018 VT MÄK Inc. All Rights Reserved (
www.mak.com
)