~elementary-apps/cable/pastebin

« back to all changes in this revision

Viewing changes to src/Settings/Settings.vala

  • Committer: eduardgotwig at gmail
  • Author(s): Julien Spautz
  • Date: 2013-08-12 16:44:37 UTC
  • mfrom: (79.1.37 model-view)
  • Revision ID: eduardgotwig@gmail.com-20130812164437-wlojp66wpptckn96
Merged  lp:~julien-spautz/cable/model-view 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***
 
2
    Copyright (C) 2013 Cable Developers
 
3
 
 
4
    This program or library is free software; you can redistribute it
 
5
    and/or modify it under the terms of the GNU Lesser General Public
 
6
    License as published by the Free Software Foundation; either
 
7
    version 3 of the License, or (at your option) any later version.
 
8
 
 
9
    This library is distributed in the hope that it will be useful,
 
10
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 
12
    Lesser General Public License for more details.
 
13
 
 
14
    You should have received a copy of the GNU Lesser General
 
15
    Public License along with this library; if not, write to the
 
16
    Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
17
    Boston, MA 02110-1301 USA.
 
18
***/
 
19
 
 
20
/**
 
21
 * Namespace for accessing the app's gsettings. May be used by any part of the app.
 
22
 */
 
23
namespace Cable.Settings {
 
24
 
 
25
    public static Settings.Preferences preferences;
 
26
 
 
27
    /**
 
28
     * Load values from gsettings.
 
29
     */
 
30
    public static void init () {
 
31
        preferences = new Settings.Preferences ();
 
32
    }
 
33
}