Increased functionality of osso wrapper
authorjaviplx <javiplx@gmail.com>
Sat, 7 May 2011 18:34:27 +0000 (18:34 +0000)
committerjaviplx <javiplx@gmail.com>
Sat, 7 May 2011 18:34:27 +0000 (18:34 +0000)
git-svn-id: file:///svnroot/wifihood/branches/hildon-wrapping@135 c51dfc6a-5949-4919-9c8e-f207a149c383

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()
+