1 /*
2  * OsgAndroidNotifyHandler.hpp
3  *
4  *  Created on: 31/05/2011
5  *      Author: Jorge Izquierdo Ciges
6  */
7 
8 #ifndef OSGANDROIDNOTIFYHANDLER_HPP_
9 #define OSGANDROIDNOTIFYHANDLER_HPP_
10 
11 #include <android/log.h>
12 
13 #include <osg/Notify>
14 
15 #include <string>
16 
17 class OSG_EXPORT OsgAndroidNotifyHandler : public osg::NotifyHandler
18 {
19 private:
20     std::string _tag;
21 public:
22     void setTag(std::string tag);
23     void notify(osg::NotifySeverity severity, const char *message);
24 };
25 
26 #endif /* OSGANDROIDNOTIFYHANDLER_HPP_ */
27