// file : xsde/cxx/serializer/non-validating/ncname-stl.hxx // copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC // license : GNU GPL v2 + exceptions; see accompanying LICENSE file #ifndef XSDE_CXX_SERIALIZER_NON_VALIDATING_NCNAME_STL_HXX #define XSDE_CXX_SERIALIZER_NON_VALIDATING_NCNAME_STL_HXX #include #include namespace xsde { namespace cxx { namespace serializer { namespace non_validating { #ifdef XSDE_REUSE_STYLE_MIXIN struct ncname_simpl: virtual ncname_sskel #else struct ncname_simpl: ncname_sskel #endif { virtual void pre (const std::string&); virtual void _serialize_content (); protected: std::string value_; }; } } } } #endif // XSDE_CXX_SERIALIZER_NON_VALIDATING_NCNAME_STL_HXX