aboutsummaryrefslogtreecommitdiff
path: root/libxsde/xsde/cxx/hybrid/any-type-sskel.hxx
blob: ba52b45fd244b5c7ff043ade01629612f95b8fad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// file      : xsde/cxx/hybrid/any-type-sskel.hxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC
// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

#ifndef XSDE_CXX_HYBRID_ANY_TYPE_SSKEL_HXX
#define XSDE_CXX_HYBRID_ANY_TYPE_SSKEL_HXX

#include <xsde/cxx/config.hxx>

#ifdef XSDE_SERIALIZER_VALIDATION
#  include <xsde/cxx/serializer/validating/serializer.hxx>
#else
#  include <xsde/cxx/serializer/non-validating/serializer.hxx>
#endif

#include <xsde/cxx/hybrid/any-type.hxx>

namespace xsde
{
  namespace cxx
  {
    namespace hybrid
    {
#ifdef XSDE_SERIALIZER_VALIDATION
      struct any_type_sskel: serializer::validating::complex_content
#else
      struct any_type_sskel: serializer::non_validating::complex_content
#endif
      {
        virtual void
        pre (const any_type&) = 0;

        // Override the following two functions to implement
        // your logic.
        //

        // virtual void
        // _serialize_attributes ();

        // virtual void
        // _serialize_content ();

#ifdef XSDE_POLYMORPHIC
        static const char*
        _static_type ();

        virtual const char*
        _dynamic_type () const;
#endif

#ifdef XSDE_REUSE_STYLE_TIEIN
        any_type_sskel ();
        any_type_sskel (any_type_sskel* impl, void*);

      protected:
        any_type_sskel* any_type_impl_;
#endif
      };
    }
  }
}

#include <xsde/cxx/hybrid/any-type-sskel.ixx>

#endif  // XSDE_CXX_HYBRID_ANY_TYPE_SSKEL_HXX