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

16 lines
292 B
C++

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