OpenSceneGraph/src/osgPlugins/ive/Drawable.h
2003-05-24 14:42:00 +00:00

16 lines
255 B
C++

#ifndef IVE_DRAWABLE
#define IVE_DRAWABLE 1
#include <osg/Drawable>
#include "ReadWrite.h"
namespace ive{
class Drawable : public ReadWrite, public osg::Drawable{
public:
void write(DataOutputStream* out);
void read(DataInputStream* in);
};
}
#endif