// file : xsde/cxx/serializer/non-validating/serializer.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_SERIALIZER_HXX #define XSDE_CXX_SERIALIZER_NON_VALIDATING_SERIALIZER_HXX #include #include namespace xsde { namespace cxx { namespace serializer { namespace non_validating { struct empty_content: serializer_base { #ifdef XSDE_REUSE_STYLE_TIEIN empty_content (); empty_content (empty_content* impl, void*); #endif }; // // struct simple_content: empty_content { #ifdef XSDE_REUSE_STYLE_TIEIN virtual void _serialize_content (); simple_content (); simple_content (simple_content* impl, void*); #endif }; // // struct complex_content: empty_content { #ifdef XSDE_REUSE_STYLE_TIEIN complex_content (); complex_content (complex_content* impl, void*); #endif }; } } } } #include #endif // XSDE_CXX_SERIALIZER_NON_VALIDATING_SERIALIZER_HXX