// file : xsde/cxx/serializer/non-validating/nmtoken-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_NMTOKEN_STL_HXX #define XSDE_CXX_SERIALIZER_NON_VALIDATING_NMTOKEN_STL_HXX #include #include namespace xsde { namespace cxx { namespace serializer { namespace non_validating { #ifdef XSDE_REUSE_STYLE_MIXIN struct nmtoken_simpl: virtual nmtoken_sskel #else struct nmtoken_simpl: nmtoken_sskel #endif { virtual void pre (const std::string&); virtual void _serialize_content (); protected: std::string value_; }; } } } } #endif // XSDE_CXX_SERIALIZER_NON_VALIDATING_NMTOKEN_STL_HXX