16 lines
292 B
C++
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
|