MAK RTIspy API Documentation for HLA Evolved
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
HLA1516E
RTI
RangeBounds.h
Go to the documentation of this file.
1
/***********************************************************************
2
The IEEE hereby grants a general, royalty-free license to copy, distribute,
3
display and make derivative works from this material, for all purposes,
4
provided that any use of the material contains the following
5
attribution: "Reprinted with permission from IEEE 1516.1(TM)-2010".
6
Should you require additional information, contact the Manager, Standards
7
Intellectual Property, IEEE Standards Association (stds-ipr@ieee.org).
8
***********************************************************************/
9
/***********************************************************************
10
IEEE 1516.1 High Level Architecture Interface Specification C++ API
11
File: RTI/RangeBounds.h
12
***********************************************************************/
13
14
#ifndef RTI_RangeBounds_h
15
#define RTI_RangeBounds_h
16
17
#include <
RTI/SpecificConfig.h
>
18
19
namespace
rti1516e
20
{
21
class
RTI_EXPORT
RangeBounds
22
{
23
public
:
24
RangeBounds
();
25
26
RangeBounds
(
27
unsigned
long
lowerBound,
28
unsigned
long
upperBound);
29
30
~
RangeBounds
()
31
throw
();
32
33
RangeBounds
(
34
RangeBounds
const
& rhs);
35
36
RangeBounds
& operator= (
37
RangeBounds
const
& rhs);
38
39
unsigned
long
getLowerBound ()
const
;
40
41
unsigned
long
getUpperBound ()
const
;
42
43
void
setLowerBound (
44
unsigned
long
lowerBound);
45
46
void
setUpperBound (
47
unsigned
long
upperBound);
48
49
private
:
50
unsigned
long
_lowerBound
;
51
unsigned
long
_upperBound
;
52
};
53
}
54
55
#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
)