aboutsummaryrefslogtreecommitdiff
path: root/libxsde/xsde/cxx/hybrid/any-type.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'libxsde/xsde/cxx/hybrid/any-type.cxx')
-rw-r--r--libxsde/xsde/cxx/hybrid/any-type.cxx53
1 files changed, 53 insertions, 0 deletions
diff --git a/libxsde/xsde/cxx/hybrid/any-type.cxx b/libxsde/xsde/cxx/hybrid/any-type.cxx
new file mode 100644
index 0000000..b16356c
--- /dev/null
+++ b/libxsde/xsde/cxx/hybrid/any-type.cxx
@@ -0,0 +1,53 @@
+// file : xsde/cxx/hybrid/any-type.cxx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2005-2009 Code Synthesis Tools CC
+// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
+
+#include <xsde/cxx/hybrid/any-type.hxx>
+
+namespace xsde
+{
+ namespace cxx
+ {
+ namespace hybrid
+ {
+ // any_type
+ //
+#ifdef XSDE_POLYMORPHIC
+ any_type::
+ ~any_type ()
+ {
+ }
+
+#ifdef XSDE_STL
+ const std::string& any_type::
+ _dynamic_type () const
+ {
+ return _static_type ();
+ }
+
+ static const std::string any_type_static_type_ =
+ "anyType http://www.w3.org/2001/XMLSchema";
+
+ const std::string& any_type::
+ _static_type ()
+ {
+ return any_type_static_type_;
+ }
+#else
+ const char* any_type::
+ _dynamic_type () const
+ {
+ return _static_type ();
+ }
+
+ const char* any_type::
+ _static_type ()
+ {
+ return "anyType http://www.w3.org/2001/XMLSchema";
+ }
+#endif
+#endif
+ }
+ }
+}