.. _program_listing_file__tmp_ws_src_ecl_lite_ecl_config_include_ecl_config_portable_types.hpp: Program Listing for File portable_types.hpp =========================================== |exhale_lsh| :ref:`Return to documentation for file ` (``/tmp/ws/src/ecl_lite/ecl_config/include/ecl/config/portable_types.hpp``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp /***************************************************************************** ** Ifdefs *****************************************************************************/ #ifndef ECL_PORTABLE_TYPES_HPP_ #define ECL_PORTABLE_TYPES_HPP_ /***************************************************************************** ** Includes *****************************************************************************/ #include #include /***************************************************************************** ** Namespaces *****************************************************************************/ namespace ecl { /***************************************************************************** ** Integers *****************************************************************************/ // If errors show up, need to check the ecl macro logic. #if ECL_SIZE_OF_CHAR == 1 typedef char int8; typedef unsigned char uint8; #else #error "ecl::int8 could not be typedef'd (probably faulty ecl logic)." #endif #if ECL_SIZE_OF_SHORT == 2 typedef short int16; typedef unsigned short uint16; #else #error "ecl::int16 could not be typedef'd (probably faulty ecl logic)." #endif #if ECL_SIZE_OF_INT == 4 typedef int int32; typedef unsigned int uint32; #else #error "ecl::int32 could not be typedef'd (probably faulty ecl logic)." #endif #if ECL_SIZE_OF_LONG == 4 typedef long long int64; typedef unsigned long long uint64; #elif ECL_SIZE_OF_LONG == 8 typedef long int64; typedef unsigned long uint64; #else #error "ecl::int64 could not be typedef'd (probably faulty ecl logic)." #endif /***************************************************************************** ** Floats *****************************************************************************/ #if ECL_SIZE_OF_FLOAT == 4 typedef float float32; #else #error "ecl::float32 could not be typedef'd (probably faulty ecl logic)." #endif #if ECL_SIZE_OF_DOUBLE == 8 typedef double float64; #elif ECL_SIZE_OF_LONG_DOUBLE == 8 typedef long double float64; #else #error "ecl::float64 could not be typedef'd (probably faulty ecl logic)." #endif #if ECL_SIZE_OF_LONG_DOUBLE == 12 typedef long double float96; #elif ECL_SIZE_OF_LONG_DOUBLE == 16 typedef long double float128; #else #define ECL_LONG_DOUBLE_UNDEFINED #define ECL_LONG_LONG_DOUBLE_UNDEFINED //#error "ecl::float96 could not be typedef'd (probably faulty ecl logic)." #endif } // namespace ecl #endif /* ECL_PORTABLE_TYPES_HPP_ */