MAK RTIspy API Documentation for HLA Evolved
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
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 {
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
#define RTI_EXPORT
Definition: SpecificConfig.h:63
unsigned long _lowerBound
Definition: RangeBounds.h:50
Definition: RangeBounds.h:21
This file contains definitions that are used to isolate platform-specific elements of the API...
unsigned long _upperBound
Definition: RangeBounds.h:51

Document ID: Generated on Sun Jul 20 16:15:30 EDT 2025 from SVN revision 277985
Copyright © 2005-2025 MAK Technologies Inc. All Rights Reserved (www.mak.com)