MAK RTIspy API Documentation for HLA 1516
Home
Modules
Namespaces
Classes
Files
Examples
Libraries
File List
File Members
include
HLA1516
RTI
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 Tue May 7 16:26:47 EDT 2013 from SVN revision 126903
Copyright © 2005-2013 VT MÄK Inc. All Rights Reserved (
www.mak.com
)