converterHelperCommon.h (892B)
1 /* Common include headers for all converter functions. 2 * 3 * (C) Frank-Rene Schaefer 4 * ABSOLUTELY NO WARRANTY */ 5 #ifndef __QUEX_INCLUDE_GUARD__CONVERTER_HELPER__COMMON_H 6 #define __QUEX_INCLUDE_GUARD__CONVERTER_HELPER__COMMON_H 7 8 #include "definitions" 9 #include "compatStdint.h" 10 #include "asserts" 11 #if ! defined(__QUEX_OPTION_PLAIN_C) 12 # include <string> 13 #endif 14 15 /* Signalize: Converters are available! 16 * 17 * Since converters can come from multiple sources it is not possible to 18 * include in a header always the right converters. To get along, users of 19 * converters must at least check that before they are included, the converter 20 * headers have been made available--by inclusion before they were included */ 21 #define QUEX_CHARACTER_CONVERTER_DECLARED 22 23 #endif /* __QUEX_INCLUDE_GUARD__CONVERTER_HELPER__COMMON_H */