// file : xsde/cxx/parser/validating/double.hxx // copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC // license : GNU GPL v2 + exceptions; see accompanying LICENSE file #ifndef XSDE_CXX_PARSER_VALIDATING_DOUBLE_HXX #define XSDE_CXX_PARSER_VALIDATING_DOUBLE_HXX #include #include namespace xsde { namespace cxx { namespace parser { namespace validating { #ifdef XSDE_REUSE_STYLE_MIXIN struct double_pimpl: virtual double_pskel, number #else struct double_pimpl: double_pskel, number #endif { virtual void _pre (); virtual void _characters (const ro_string&); virtual void _post (); virtual double post_double (); protected: // Assume double values (without leading and trailing whitespaces) // cannot be longer than 127 characters. // char str_[128]; double value_; }; } } } } #endif // XSDE_CXX_PARSER_VALIDATING_DOUBLE_HXX