OpenSceneGraph/src/osgPlugins/ive/LightModel.h
Robert Osfield e68cfd1965 From Sebastien Grignard, add writing out/reading in of drawable components of
a ShapeDrawable.

From Robert, add versioning of the above change to allow old files to still
work.
2004-09-15 19:14:00 +00:00

16 lines
278 B
C++

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