示例#1
0
 ///
 /// Literal operator for creating uint24_t type.
 /// @param value The value of the literal.
 /// @returns A uint24_t type based on the literal value.
 ///
 inline uint24_t operator "" _u24(unsigned long long int value)
 {
     return (uint24_t(static_cast<std::int_least32_t>(value)));
 }
			/** Retrieves the binding's value
			@return
				The value
			*/
			uint24_t GetValue()const
			{
				return uint24_t( _value );
			}