Files
OpenSceneGraph/src/osgPlugins/Inventor/GroupSoLOD.h
Robert Osfield 218c6e8d13 Added Inventor plugin, submitted by Sean Spicer, Written by Vivek (c) Magic-Earth.
To compile in do a setenv/export USE_COIN or USE_INVENTOR.
2003-09-02 21:53:41 +00:00

23 lines
356 B
C++

#ifndef _GROUPSOLOD_H_
#define _GROUPSOLOD_H_
#include <Inventor/nodes/SoLOD.h>
#include <Inventor/nodes/SoSubNode.h>
class GroupSoLOD : public SoLOD
{
SO_NODE_HEADER(GroupSoLOD);
public:
GroupSoLOD();
static void initClass();
protected:
virtual void callback(SoCallbackAction *action);
private:
virtual ~GroupSoLOD();
};
#endif