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

16 lines
300 B
C++

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