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