diff options
author | Ted Gould <ted@gould.cx> | 2014-02-11 10:01:10 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2014-02-11 10:01:10 -0600 |
commit | 6e67bf9139adfbd9bfd8b7a32ec061d63514efe9 (patch) | |
tree | 9a25523145728d97d6ae2fc81adf0e6a2dc9b7d2 /src | |
parent | e826a1e7d8d21d21cddeb797cd7f8eb6aee08c79 (diff) | |
download | ayatana-indicator-sound-6e67bf9139adfbd9bfd8b7a32ec061d63514efe9.tar.gz ayatana-indicator-sound-6e67bf9139adfbd9bfd8b7a32ec061d63514efe9.tar.bz2 ayatana-indicator-sound-6e67bf9139adfbd9bfd8b7a32ec061d63514efe9.zip |
Making an object to hold our accounts service stuff
Diffstat (limited to 'src')
-rw-r--r-- | src/CMakeLists.txt | 4 | ||||
-rw-r--r-- | src/accounts-service-user.vala | 31 |
2 files changed, 35 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 1994989..9ff68ca 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -44,6 +44,7 @@ vala_add(indicator-sound-service media-player media-player-list mpris2-interfaces + accounts-service-user ) vala_add(indicator-sound-service main.vala @@ -76,6 +77,9 @@ vala_add(indicator-sound-service media-player mpris2-interfaces ) +vala_add(indicator-sound-service + accounts-service-user.vala +) vala_finish(indicator-sound-service SOURCES diff --git a/src/accounts-service-user.vala b/src/accounts-service-user.vala new file mode 100644 index 0000000..56d981d --- /dev/null +++ b/src/accounts-service-user.vala @@ -0,0 +1,31 @@ +/* + * 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 AccountServiceUser : Object { + + + + + + + + + +} |