// file : xsde/cxx/serializer/non-validating/hex-binary.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_HEX_BINARY_HXX #define XSDE_CXX_SERIALIZER_NON_VALIDATING_HEX_BINARY_HXX #include namespace xsde { namespace cxx { namespace serializer { namespace non_validating { #ifdef XSDE_REUSE_STYLE_MIXIN struct hex_binary_simpl: virtual hex_binary_sskel #else struct hex_binary_simpl: hex_binary_sskel #endif { virtual ~hex_binary_simpl (); hex_binary_simpl (bool free = false); virtual void pre (const buffer*); virtual void _serialize_content (); protected: bool free_; const buffer* value_; }; } } } } #include #endif // XSDE_CXX_SERIALIZER_NON_VALIDATING_HEX_BINARY_HXX