Changed the private: to protected: to allow easier extension.

This commit is contained in:
Robert Osfield
2002-10-21 13:02:30 +00:00
parent 761fc0574f
commit ac0de068d9
3 changed files with 5 additions and 5 deletions

View File

@@ -18,7 +18,7 @@ button (or left and right simultaneously) stops dead.
class OSGGA_EXPORT FlightManipulator : public CameraManipulator
{
public:
public:
FlightManipulator();
virtual ~FlightManipulator();
@@ -43,7 +43,7 @@ public:
/** Configure the Yaw control for the flight model. */
void setYawControlMode(YawControlMode ycm) { _yawMode = ycm; }
private:
protected:
/** Reset the internal GUIEvent stack.*/
void flushMouseEventStack();