Added ProxyNode.h

This commit is contained in:
Robert Osfield 2005-03-07 14:27:34 +00:00
parent c59b28ac3f
commit b3aba84d54

View File

@ -0,0 +1,15 @@
#ifndef IVE_PROXYNODE
#define IVE_PROXYNODE 1
#include <osg/ProxyNode>
#include "ReadWrite.h"
namespace ive{
class ProxyNode : public osg::ProxyNode, public ReadWrite {
public:
void write(DataOutputStream* out);
void read(DataInputStream* in);
};
}
#endif