OpenSceneGraph/src/osgPlugins/ive/CoordinateSystemNode.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
316 B
C++

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