aboutsummaryrefslogtreecommitdiff
path: root/src/main.vala
diff options
context:
space:
mode:
authorLars Uebernickel <lars.uebernickel@canonical.com>2013-03-22 16:24:06 -0400
committerLars Uebernickel <lars.uebernickel@canonical.com>2013-03-22 16:24:06 -0400
commit92c98f341c6b5600d4b5fae8753326c866e40860 (patch)
tree6335f180e06be2f1b4c7dc7f1a6ac907e35d46cc /src/main.vala
parentea30986e03e54ee650a1cca610904de9f4d0f745 (diff)
downloadayatana-indicator-sound-92c98f341c6b5600d4b5fae8753326c866e40860.tar.gz
ayatana-indicator-sound-92c98f341c6b5600d4b5fae8753326c866e40860.tar.bz2
ayatana-indicator-sound-92c98f341c6b5600d4b5fae8753326c866e40860.zip
Add service that adheres to the new indicator protocol
This is the one that gets built now. It doesn't do anything interesting yet, though.
Diffstat (limited to 'src/main.vala')
-rw-r--r--src/main.vala5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main.vala b/src/main.vala
new file mode 100644
index 0000000..1ec7d2c
--- /dev/null
+++ b/src/main.vala
@@ -0,0 +1,5 @@
+
+static int main (string[] args) {
+ var service = new IndicatorSound.Service ();
+ return service.run ();
+}