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