MAK RTIspy API Documentation for HLA 4
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
RangeBounds.h
Go to the documentation of this file.
1 #pragma once
2 /***********************************************************************
3  The IEEE hereby grants a general, royalty-free license to copy, distribute,
4  display and make derivative works from this material, for all purposes,
5  provided that any use of the material contains the following
6  attribution: "Reprinted with permission from IEEE 1516.1(TM)-2025".
7  Should you require additional information, contact the Manager, Standards
8  Intellectual Property, IEEE Standards Association (stds-ipr@ieee.org).
9 ***********************************************************************/
10 
11 #include <RTI/SpecificConfig.h>
12 
13 namespace rti1516_2025
14 {
16  {
17  public:
18  RangeBounds ();
19 
20  RangeBounds (
21  unsigned long lowerBound,
22  unsigned long upperBound);
23 
24  ~RangeBounds ()
25  noexcept;
26 
27  RangeBounds (
28  RangeBounds const & rhs);
29 
30  RangeBounds & operator= (
31  RangeBounds const & rhs);
32 
33  unsigned long getLowerBound () const;
34 
35  unsigned long getUpperBound () const;
36 
37  void setLowerBound (
38  unsigned long lowerBound);
39 
40  void setUpperBound (
41  unsigned long upperBound);
42 
43  private:
44  unsigned long _lowerBound;
45  unsigned long _upperBound;
46  };
47 }
48 
49 
#define RTI_EXPORT
Definition: SpecificConfig.h:45
unsigned long _lowerBound
Definition: RangeBounds.h:44
unsigned long _upperBound
Definition: RangeBounds.h:45
Definition: RangeBounds.h:15
This file contains definitions that are used to isolate platform-specific elements of the API...

Document ID: Generated on Wed Jul 8 16:20:32 EDT 2026 from SVN revision 291616
Copyright © 2005-2025 MAK Technologies Inc. All Rights Reserved (www.mak.com)