?? rangebounds.h
字號:
/***********************************************************************
IEEE 1516.1 High Level Architecture Interface Specification C++ API
File: RTI/RangeBounds.h
***********************************************************************/
#ifndef RTI_RangeBounds_h
#define RTI_RangeBounds_h
#include <RTI/SpecificConfig.h>
namespace RTI
{
class RTI_EXPORT RangeBounds
{
public:
RangeBounds();
RangeBounds(unsigned long lowerBound,
unsigned long upperBound);
~RangeBounds()
throw ();
RangeBounds(RangeBounds const & rhs);
RangeBounds &
operator=(RangeBounds const & rhs);
unsigned long
getLowerBound() const;
unsigned long
getUpperBound() const;
void
setLowerBound(unsigned long lowerBound);
void
setUpperBound(unsigned long upperBound);
private:
unsigned long _lowerBound;
unsigned long _upperBound;
};
}
#ifdef RTI_USE_INLINE
#include "RTI/RangeBounds.i"
#endif // RTI_USE_INLINE
#endif // RTI_RangeBounds_h
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -