Update to upstream 1.0.1
[profile/ivi/gsignond.git] / include / gsignond / gsignond-config.h
1 /* vi: set et sw=4 ts=4 cino=t0,(0: */
2 /* -*- Mode: C; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 /*
4  * This file is part of gsignond
5  *
6  * Copyright (C) 2012 Intel Corporation.
7  *
8  * Contact: Amarnath Valluri <amarnath.valluri@linux.intel.com>
9  *
10  * This library is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public
12  * License as published by the Free Software Foundation; either
13  * version 2.1 of the License, or (at your option) any later version.
14  *
15  * This library is distributed in the hope that it will be useful, but
16  * WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18  * Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public
21  * License along with this library; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
23  * 02110-1301 USA
24  */
25
26 #ifndef __GSIGNOND_CONFIG_H_
27 #define __GSIGNOND_CONFIG_H_
28
29 #include <glib.h>
30 #include <glib-object.h>
31
32 #include "gsignond-config-general.h"
33 #include "gsignond-config-dbus.h"
34
35 G_BEGIN_DECLS
36
37 #define GSIGNOND_TYPE_CONFIG            (gsignond_config_get_type())
38 #define GSIGNOND_CONFIG(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj), GSIGNOND_TYPE_CONFIG, GSignondConfig))
39 #define GSIGNOND_CONFIG_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST((klass), GSIGNOND_TYPE_CONFIG, GSignondConfigClass))
40 #define GSIGNOND_IS_CONFIG(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj), GSIGNOND_TYPE_CONFIG))
41 #define GSIGNOND_IS_CONFIG_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), GSIGNOND_TYPE_CONFIG))
42 #define GSIGNOND_CONFIG_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS((obj), GSIGNOND_TYPE_CONFIG, GSignondConfigClass))
43
44 typedef struct _GSignondConfig GSignondConfig;
45 typedef struct _GSignondConfigClass GSignondConfigClass;
46 typedef struct _GSignondConfigPrivate GSignondConfigPrivate;
47
48 struct _GSignondConfig
49 {
50     GObject parent;
51
52     /* priv */
53     GSignondConfigPrivate *priv;
54 };
55
56 struct _GSignondConfigClass
57 {
58     /*< private >*/
59     GObjectClass parent_class;
60 };
61
62 GType gsignond_config_get_type (void) G_GNUC_CONST;
63
64 GSignondConfig * gsignond_config_new ();
65
66 gint
67 gsignond_config_get_integer (GSignondConfig *self, const gchar *key);
68
69 void
70 gsignond_config_set_integer (GSignondConfig *self, const gchar *key,
71                              gint value) ;
72 const gchar*
73 gsignond_config_get_string (GSignondConfig *self, const gchar *key);
74
75 void
76 gsignond_config_set_string (GSignondConfig *self, const gchar *key,
77                              const gchar *value); 
78
79 G_END_DECLS
80
81 #endif /* __GSIGNOND_CONFIG_H_ */