From 25ddbf8f1f99e63fd3ac0aa48353779265941805 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Tue, 8 Apr 2014 11:48:34 +0000 Subject: [PATCH] From Sebastian Messerschmidt, "n the trunk version the osgGA::GUIActionAdapter has additional functions for lineIntersection which use osgGA::GUIEventAdapter&, but the class declaration is neither forwarded, nor is the header included. Using the trunk together with osgEarth 2.5 will fail to build, due to the missing type. Attached is the file forward declaring osgGA::GUIEventAdapter." --- include/osgGA/GUIActionAdapter | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/osgGA/GUIActionAdapter b/include/osgGA/GUIActionAdapter index 06854631b..9c0c1725b 100644 --- a/include/osgGA/GUIActionAdapter +++ b/include/osgGA/GUIActionAdapter @@ -52,7 +52,12 @@ You can override requestRedraw() and implement to call your own window redraw straight away. Or you can implement so that a flag is set and then you then respond the flag being set in your own leisure. + + */ + +class GUIEventAdapter; + class GUIActionAdapter { public: