summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeif Lotfy <seif@lotfy.com>2013-04-07 12:58:36 +0200
committerSeif Lotfy <seif@lotfy.com>2013-04-07 13:07:23 +0200
commitce637ff2d2cf4bceaa7a4c483b22b9f1743ad666 (patch)
treeb3fbad53854f748cc474158cb7b17a06c5fb5e41
parent4f3f223ecbd0fb0d06dfb5af28ef5bec111b2141 (diff)
downloadzeitgeist-ce637ff2d2cf4bceaa7a4c483b22b9f1743ad666.tar.gz
Expose DBus Properties over Log class
-rw-r--r--libzeitgeist/log.vala17
1 files changed, 17 insertions, 0 deletions
diff --git a/libzeitgeist/log.vala b/libzeitgeist/log.vala
index b2002057..890d3077 100644
--- a/libzeitgeist/log.vala
+++ b/libzeitgeist/log.vala
@@ -612,6 +612,23 @@ public class Log : QueuedProxyWrapper
engine_version.get ("(iii)", &major, &minor, &micro);
}
+ /**
+ * Gets extensions of the running Zeitgeist daemon.
+ *
+ * @return array of extenstions names strings
+ */
+ public string[] get_extensions () {
+ return proxy.extensions;
+ }
+
+ /**
+ * Gets datapath of the running Zeitgeist daemon.
+ *
+ * @return string datapath
+ */
+ public string datapath () {
+ return proxy.datapath;
+ }
}
}