OpenSceneGraph/src/osgPlugins/ive/Point.h

16 lines
241 B
C
Raw Normal View History

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