aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2014-02-12 16:54:12 -0600
committerTed Gould <ted@gould.cx>2014-02-12 16:54:12 -0600
commit11105537ec91c601fdf0012ed69dc2d64aeea3d4 (patch)
treece94ba7db2e19f41cd5f5bf6d8f23a822dd6d4ef /src
parent537e5b2988815287e6bb3da35189e5c65c5ac4b2 (diff)
downloadayatana-indicator-sound-11105537ec91c601fdf0012ed69dc2d64aeea3d4.tar.gz
ayatana-indicator-sound-11105537ec91c601fdf0012ed69dc2d64aeea3d4.tar.bz2
ayatana-indicator-sound-11105537ec91c601fdf0012ed69dc2d64aeea3d4.zip
Adding a stub object for the greeter list
Diffstat (limited to 'src')
-rw-r--r--src/CMakeLists.txt6
-rw-r--r--src/media-player-list-greeter.vala23
2 files changed, 29 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 3efe14e..15133f0 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -73,6 +73,12 @@ vala_add(indicator-sound-service
mpris2-interfaces
)
vala_add(indicator-sound-service
+ media-player-list-greeter.vala
+ DEPENDS
+ media-player-list
+ media-player
+)
+vala_add(indicator-sound-service
mpris2-interfaces.vala
)
vala_add(indicator-sound-service
diff --git a/src/media-player-list-greeter.vala b/src/media-player-list-greeter.vala
new file mode 100644
index 0000000..6bcf270
--- /dev/null
+++ b/src/media-player-list-greeter.vala
@@ -0,0 +1,23 @@
+/*
+ * Copyright © 2014 Canonical Ltd.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 3.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Authors:
+ * Ted Gould <ted@canonical.com>
+ */
+
+public class MediaPlayerListGreeter : MediaPlayerList {
+
+
+}