// file : xsde/cxx/parser/validating/string-common.hxx // copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC // license : GNU GPL v2 + exceptions; see accompanying LICENSE file #ifndef XSDE_CXX_PARSER_VALIDATING_STRING_COMMON_HXX #define XSDE_CXX_PARSER_VALIDATING_STRING_COMMON_HXX #include #ifdef XSDE_STL #include #else #include #endif #include namespace xsde { namespace cxx { namespace parser { namespace validating { struct string_common { static bool validate_facets ( #ifdef XSDE_STL std::string& str, #else string& str, #endif const string_facets::facets&, context&); }; } } } } #endif // XSDE_CXX_PARSER_VALIDATING_STRING_COMMON_HXX