OpenSceneGraph/src/osgPlugins/ive/LineStipple.h
2008-06-19 14:57:36 +00:00

16 lines
277 B
C++

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