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