aboutsummaryrefslogtreecommitdiff
path: root/examples/cxx/hybrid/streaming/object-pimpl.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'examples/cxx/hybrid/streaming/object-pimpl.hxx')
-rw-r--r--examples/cxx/hybrid/streaming/object-pimpl.hxx33
1 files changed, 33 insertions, 0 deletions
diff --git a/examples/cxx/hybrid/streaming/object-pimpl.hxx b/examples/cxx/hybrid/streaming/object-pimpl.hxx
new file mode 100644
index 0000000..8d59063
--- /dev/null
+++ b/examples/cxx/hybrid/streaming/object-pimpl.hxx
@@ -0,0 +1,33 @@
+// file : examples/cxx/hybrid/streaming/object-pimpl.hxx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : not copyrighted - public domain
+
+#ifndef OBJECT_PIMPL_HXX
+#define OBJECT_PIMPL_HXX
+
+// Customized object parser implementation.
+//
+class object_pimpl: public object_pskel
+{
+public:
+ virtual void
+ pre ();
+
+ virtual void
+ id (unsigned int);
+
+ virtual void
+ position (const ::position&);
+
+ virtual object*
+ post_object ();
+
+private:
+ unsigned int id_;
+
+ unsigned int count_;
+ float avg_lat_;
+ float avg_lon_;
+};
+
+#endif // OBJECT_PIMPL_HXX