Files
OpenSceneGraph/src/osgPlugins/ive/EllipsoidModel.h
Robert Osfield fced94fab3 Added support for decoration of the osgTerrain::DataSet generated databases
with a CoordinateSystemNode which reflect the coordinate system of the
database.

Added support for reading and writing CoordianteSystemNode into the .osg
and .ive formats.
2004-05-02 21:50:15 +00:00

16 lines
292 B
C++

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