minimal build
[platform/upstream/gcr.git] / gcr / gcr-single-collection.h
1 /*
2  * gnome-keyring
3  *
4  * Copyright (C) 2011 Collabora Ltd.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU Lesser General Public License as
8  * published by the Free Software Foundation; either version 2.1 of
9  * the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19  * 02111-1307, USA.
20  *
21  * Author: Stef Walter <stefw@collabora.co.uk>
22  */
23
24 #ifndef __GCR_SINGLE_COLLECTION_H__
25 #define __GCR_SINGLE_COLLECTION_H__
26
27 #include "gcr-collection.h"
28
29 #include <glib-object.h>
30
31 G_BEGIN_DECLS
32
33 #define GCR_TYPE_SINGLE_COLLECTION               (_gcr_single_collection_get_type ())
34 #define GCR_SINGLE_COLLECTION(obj)               (G_TYPE_CHECK_INSTANCE_CAST ((obj), GCR_TYPE_COLLECTION, GcrSingleCollection))
35 #define GCR_SINGLE_COLLECTION_CLASS(klass)       (G_TYPE_CHECK_CLASS_CAST ((klass), GCR_TYPE_COLLECTION, GcrSingleCollectionClass))
36 #define GCR_IS_SINGLE_COLLECTION(obj)            (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GCR_TYPE_COLLECTION))
37 #define GCR_IS_SINGLE_COLLECTION_CLASS(klass)    (G_TYPE_CHECK_CLASS_TYPE ((klass), GCR_TYPE_COLLECTION))
38 #define GCR_SINGLE_COLLECTION_GET_CLASS(obj)     (G_TYPE_INSTANCE_GET_CLASS ((obj), GCR_TYPE_COLLECTION, GcrSingleCollectionClass))
39
40 typedef struct _GcrSingleCollection GcrSingleCollection;
41 typedef struct _GcrSingleCollectionClass GcrSingleCollectionClass;
42
43 GType               _gcr_single_collection_get_type                (void);
44
45 GcrCollection *     _gcr_single_collection_new                     (GObject *object);
46
47 GObject *           _gcr_single_collection_get_object              (GcrSingleCollection *self);
48
49 void                _gcr_single_collection_set_object              (GcrSingleCollection *self,
50                                                                    GObject *object);
51
52 G_END_DECLS
53
54 #endif /* __GCR_SINGLE_COLLECTION_H__ */