~ubuntu-branches/ubuntu/saucy/darktable/saucy

« back to all changes in this revision

Viewing changes to src/common/pwstorage/backend_gconf.h

  • Committer: Bazaar Package Importer
  • Author(s): David Bremner
  • Date: 2011-04-14 23:42:12 UTC
  • Revision ID: james.westby@ubuntu.com-20110414234212-kuffcz5wiu18v6ra
Tags: upstream-0.8
ImportĀ upstreamĀ versionĀ 0.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// This file is part of darktable
 
2
// Copyright (c) 2010 Tobias Ellinghaus <houz@gmx.de>.
 
3
 
 
4
// darktable is free software: you can redistribute it and/or modify
 
5
// it under the terms of the GNU General Public License as published by
 
6
// the Free Software Foundation, either version 3 of the License, or
 
7
// (at your option) any later version.
 
8
//
 
9
// darktable 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
 
12
// GNU General Public License for more details.
 
13
//
 
14
// You should have received a copy of the GNU General Public License
 
15
// along with darktable.  If not, see <http://www.gnu.org/licenses/>.
 
16
 
 
17
#ifndef __BACKEND_GCONF_H__
 
18
#define __BACKEND_GCONF_H__
 
19
 
 
20
#include "pwstorage.h"
 
21
 
 
22
/** Store (key,value) pairs. */
 
23
gboolean dt_pwstorage_gconf_set(const gchar* slot, GHashTable* table);
 
24
/** Load (key,value) pairs. */
 
25
GHashTable* dt_pwstorage_gconf_get(const gchar* slot);
 
26
 
 
27
#endif