OpenSceneGraph/src/osgPlugins/ive/ShapeDrawable.h
2004-03-17 16:11:47 +00:00

16 lines
281 B
C++

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