aboutsummaryrefslogtreecommitdiff
path: root/libxsde/xsde/cxx/hybrid/any-type-pimpl.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'libxsde/xsde/cxx/hybrid/any-type-pimpl.hxx')
-rw-r--r--libxsde/xsde/cxx/hybrid/any-type-pimpl.hxx48
1 files changed, 48 insertions, 0 deletions
diff --git a/libxsde/xsde/cxx/hybrid/any-type-pimpl.hxx b/libxsde/xsde/cxx/hybrid/any-type-pimpl.hxx
new file mode 100644
index 0000000..4e799a6
--- /dev/null
+++ b/libxsde/xsde/cxx/hybrid/any-type-pimpl.hxx
@@ -0,0 +1,48 @@
+// file : xsde/cxx/hybrid/any-type-pimpl.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_PIMPL_HXX
+#define XSDE_CXX_HYBRID_ANY_TYPE_PIMPL_HXX
+
+#include <xsde/cxx/config.hxx>
+
+#include <xsde/cxx/hybrid/any-type-pskel.hxx>
+
+namespace xsde
+{
+ namespace cxx
+ {
+ namespace hybrid
+ {
+#ifdef XSDE_REUSE_STYLE_MIXIN
+ struct any_type_pimpl: virtual any_type_pskel
+#else
+ struct any_type_pimpl: any_type_pskel
+#endif
+ {
+ ~any_type_pimpl ();
+ any_type_pimpl (bool base = false);
+
+ void
+ pre_impl (any_type*);
+
+ virtual void
+ _pre ();
+
+ virtual any_type*
+ post_any_type ();
+
+ virtual void
+ _reset ();
+
+ protected:
+ bool base_;
+ any_type* val_;
+ };
+ }
+ }
+}
+
+#endif // XSDE_CXX_HYBRID_ANY_TYPE_PIMPL_HXX