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

16 lines
267 B
C++

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