OpenSceneGraph/src/osgPlugins/ive/DrawElementsUByte.h

16 lines
296 B
C
Raw Normal View History

2003-10-09 22:55:56 +08:00
#ifndef IVE_DRAWELEMENTSUBYTE
#define IVE_DRAWELEMENTSUBYTE 1
#include <osg/PrimitiveSet>
#include "ReadWrite.h"
namespace ive{
class DrawElementsUByte : public osg::DrawElementsUByte, public ReadWrite {
public:
void write(DataOutputStream* out);
void read(DataInputStream* in);
};
}
#endif