コード例 #1
0
ファイル: core.hpp プロジェクト: vycasas/unistringxx
 ///
 /// 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)));
 }
コード例 #2
0
			/** Retrieves the binding's value
			@return
				The value
			*/
			uint24_t GetValue()const
			{
				return uint24_t( _value );
			}