2003-05-24 03:51:12 +08:00
|
|
|
#ifndef IVE_PRIMITIVESET
|
|
|
|
#define IVE_PRIMITIVESET 1
|
|
|
|
|
|
|
|
#include <osg/PrimitiveSet>
|
|
|
|
#include "ReadWrite.h"
|
|
|
|
|
|
|
|
namespace ive{
|
2003-05-24 22:42:00 +08:00
|
|
|
class PrimitiveSet : public ReadWrite, public osg::PrimitiveSet{
|
2003-05-24 03:51:12 +08:00
|
|
|
public:
|
|
|
|
void write(DataOutputStream* out);
|
|
|
|
void read(DataInputStream* in);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|