OpenSceneGraph/src/osgPlugins/ive/ProxyNode.h

16 lines
261 B
C
Raw Normal View History

2005-03-07 22:27:34 +08:00
#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