// file : xsde/cxx/serializer/validating/string-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_VALIDATING_STRING_STL_HXX #define XSDE_CXX_SERIALIZER_VALIDATING_STRING_STL_HXX #include #include namespace xsde { namespace cxx { namespace serializer { namespace validating { #ifdef XSDE_REUSE_STYLE_MIXIN struct string_simpl: virtual string_sskel #else struct string_simpl: string_sskel #endif { virtual void pre (const std::string&); virtual void _serialize_content (); protected: std::string value_; }; } } } } #endif // XSDE_CXX_SERIALIZER_VALIDATING_STRING_STL_HXX