OpenSceneGraph/src/osgPlugins/ive/ProxyNode.h
2005-03-07 14:27:34 +00:00

16 lines
261 B
C++

#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