aboutsummaryrefslogtreecommitdiff
path: root/libxsde/xsde/cxx/hybrid/any-type.hxx
blob: 50421155dc186a0db924ecd517dcedbb69cd4203 (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.hxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2005-2009 Code Synthesis Tools CC
// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

#ifndef XSDE_CXX_HYBRID_ANY_TYPE_HXX
#define XSDE_CXX_HYBRID_ANY_TYPE_HXX

#include <xsde/cxx/config.hxx>

/*
#ifdef XSDE_STL
#  include <string>
#endif
*/

namespace xsde
{
  namespace cxx
  {
    namespace hybrid
    {
      struct any_type
      {
        /*
#ifdef XSDE_POLYMORPHIC
        virtual
        ~any_type ();

#ifdef XSDE_STL
        virtual const std::string&
        _dynamic_type () const;

        static const std::string&
        _static_type ();
#else
        virtual const char*
        _dynamic_type () const;

        static const char*
        _static_type ();
#endif
#endif
        */
      };

      struct any_simple_type
      {
      };

      inline bool
      operator== (const any_simple_type&, const any_simple_type&)
      {
        return true;
      }

      inline bool
      operator!= (const any_simple_type&, const any_simple_type&)
      {
        return false;
      }
    }
  }
}

#endif  // XSDE_CXX_HYBRID_ANY_TYPE_HXX