Change the className() functions from non const to const to be consistent with the

osg::Object definition.
This commit is contained in:
Robert Osfield
2003-03-29 22:07:03 +00:00
parent 60e16ea044
commit 11053aaa5c
4 changed files with 4 additions and 4 deletions

View File

@@ -31,7 +31,7 @@ class OSGGA_EXPORT DriveManipulator : public CameraManipulator
DriveManipulator();
virtual const char* className() { return "Drive"; }
virtual const char* className() const { return "Drive"; }
virtual void setNode(osg::Node*);