Increased functionality of osso wrapper
[wifihood] / wifimap / osso_wrapper.py
index fa4bbca..21bd5da 100644 (file)
@@ -24,3 +24,13 @@ class Rpc :
         callable = iface.get_dbus_method( method )
         return callable()
 
+
+class Reporter :
+    def __init__ ( self , context ) :
+        self.context = context
+    def system_note_infoprint( self , message ) :
+        print "MESSAGE : %s" % message
+
+def SystemNote ( context ) :
+    return Reporter()
+