// file : xsde/cxx/parser/validating/negative-integer.hxx // copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC // license : GNU GPL v2 + exceptions; see accompanying LICENSE file #ifndef XSDE_CXX_PARSER_VALIDATING_NEGATIVE_INTEGER_HXX #define XSDE_CXX_PARSER_VALIDATING_NEGATIVE_INTEGER_HXX #include #include namespace xsde { namespace cxx { namespace parser { namespace validating { // Arbitrary-length negative integer. Mapped to long. // #ifdef XSDE_REUSE_STYLE_MIXIN struct negative_integer_pimpl: virtual negative_integer_pskel, number #else struct negative_integer_pimpl: negative_integer_pskel, number #endif { virtual void _pre (); virtual void _characters (const ro_string&); virtual void _post (); virtual long post_negative_integer (); protected: // We only need strlen("09223372036854775808") + 1 characters to // hold all valid and trimmed string representations of long, // assuming we are on a 64 bit machine. // char str_[21]; long value_; }; } } } } #endif // XSDE_CXX_PARSER_VALIDATING_NEGATIVE_INTEGER_HXX