Files
OpenSceneGraph/include/osg/State
2001-01-10 16:32:10 +00:00

23 lines
270 B
Plaintext

#ifndef OSG_STATE
#define OSG_STATE 1
#include <osg/Export>
namespace osg {
class SG_EXPORT State
{
public :
State( void );
~State( void );
private :
GeoState *initial;
GeoState *req;
GeoState *current;
};
};
#endif