aboutsummaryrefslogtreecommitdiff
path: root/libxsde/xsde/cxx/hybrid/any-type-simpl.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'libxsde/xsde/cxx/hybrid/any-type-simpl.hxx')
-rw-r--r--libxsde/xsde/cxx/hybrid/any-type-simpl.hxx32
1 files changed, 32 insertions, 0 deletions
diff --git a/libxsde/xsde/cxx/hybrid/any-type-simpl.hxx b/libxsde/xsde/cxx/hybrid/any-type-simpl.hxx
new file mode 100644
index 0000000..a6ef220
--- /dev/null
+++ b/libxsde/xsde/cxx/hybrid/any-type-simpl.hxx
@@ -0,0 +1,32 @@
+// file : xsde/cxx/hybrid/any-type-simpl.hxx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2005-2010 Code Synthesis Tools CC
+// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
+
+#ifndef XSDE_CXX_HYBRID_ANY_TYPE_SIMPL_HXX
+#define XSDE_CXX_HYBRID_ANY_TYPE_SIMPL_HXX
+
+#include <xsde/cxx/config.hxx>
+
+#include <xsde/cxx/hybrid/any-type-sskel.hxx>
+
+namespace xsde
+{
+ namespace cxx
+ {
+ namespace hybrid
+ {
+#ifdef XSDE_REUSE_STYLE_MIXIN
+ struct any_type_simpl: virtual any_type_sskel
+#else
+ struct any_type_simpl: any_type_sskel
+#endif
+ {
+ virtual void
+ pre (const any_type&);
+ };
+ }
+ }
+}
+
+#endif // XSDE_CXX_HYBRID_ANY_TYPE_SIMPL_HXX