From b3aba84d54b0ddf90dbd49883c54bf9e9abbeb63 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Mon, 7 Mar 2005 14:27:34 +0000 Subject: [PATCH] Added ProxyNode.h --- src/osgPlugins/ive/ProxyNode.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/osgPlugins/ive/ProxyNode.h diff --git a/src/osgPlugins/ive/ProxyNode.h b/src/osgPlugins/ive/ProxyNode.h new file mode 100644 index 000000000..7beefc920 --- /dev/null +++ b/src/osgPlugins/ive/ProxyNode.h @@ -0,0 +1,15 @@ +#ifndef IVE_PROXYNODE +#define IVE_PROXYNODE 1 + +#include +#include "ReadWrite.h" + +namespace ive{ +class ProxyNode : public osg::ProxyNode, public ReadWrite { +public: + void write(DataOutputStream* out); + void read(DataInputStream* in); +}; +} + +#endif