![]() |
Blaze 3.9
|
Implementation of a wrapper for built-in unsigned integral values. More...
#include <UnsignedValue.h>
Public Member Functions | |
Constructors | |
UnsignedValue (T value=0) | |
The default constructor for UnsignedInt. More... | |
Assignment operators | |
UnsignedValue & | operator= (T value) |
Assignment of a built-in unsigned integral value. More... | |
Conversion operators | |
operator T () const | |
Conversion to the built-in unsigned integral type. More... | |
Access functions | |
T | get () const |
Access to the wrapped built-in unsigned integral value. More... | |
Private Attributes | |
Member variables | |
T | value_ |
The wrapped built-in unsigned integral value. | |
Implementation of a wrapper for built-in unsigned integral values.
This class wraps a value of built-in unsigned integral type in order to be able to extract non-negative unsigned integral values from an input stream.
|
inlineexplicit |
The default constructor for UnsignedInt.
value | The initial value for the unsigned integer. |
|
inline |
Access to the wrapped built-in unsigned integral value.
|
inline |
Conversion to the built-in unsigned integral type.
|
inline |
Assignment of a built-in unsigned integral value.
value | The unsigned integral value. |