Blame gcr/gcr-simple-collection.h

Packit b00eeb
/*
Packit b00eeb
 * gnome-keyring
Packit b00eeb
 *
Packit b00eeb
 * Copyright (C) 2010 Stefan Walter
Packit b00eeb
 *
Packit b00eeb
 * This program is free software; you can redistribute it and/or modify
Packit b00eeb
 * it under the terms of the GNU Lesser General Public License as
Packit b00eeb
 * published by the Free Software Foundation; either version 2.1 of
Packit b00eeb
 * the License, or (at your option) any later version.
Packit b00eeb
 *
Packit b00eeb
 * This program is distributed in the hope that it will be useful, but
Packit b00eeb
 * WITHOUT ANY WARRANTY; without even the implied warranty of
Packit b00eeb
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit b00eeb
 * Lesser General Public License for more details.
Packit b00eeb
 *
Packit b00eeb
 * You should have received a copy of the GNU Lesser General Public
Packit b00eeb
 * License along with this program; if not, see <http://www.gnu.org/licenses/>.
Packit b00eeb
 */
Packit b00eeb
Packit b00eeb
#ifndef __GCR_SIMPLE_COLLECTION_H__
Packit b00eeb
#define __GCR_SIMPLE_COLLECTION_H__
Packit b00eeb
Packit b00eeb
#include "gcr-collection.h"
Packit b00eeb
Packit b00eeb
#include <glib-object.h>
Packit b00eeb
Packit b00eeb
G_BEGIN_DECLS
Packit b00eeb
Packit b00eeb
#define GCR_TYPE_SIMPLE_COLLECTION               (gcr_simple_collection_get_type ())
Packit b00eeb
#define GCR_SIMPLE_COLLECTION(obj)               (G_TYPE_CHECK_INSTANCE_CAST ((obj), GCR_TYPE_COLLECTION, GcrSimpleCollection))
Packit b00eeb
#define GCR_SIMPLE_COLLECTION_CLASS(klass)       (G_TYPE_CHECK_CLASS_CAST ((klass), GCR_TYPE_COLLECTION, GcrSimpleCollectionClass))
Packit b00eeb
#define GCR_IS_SIMPLE_COLLECTION(obj)            (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GCR_TYPE_COLLECTION))
Packit b00eeb
#define GCR_IS_SIMPLE_COLLECTION_CLASS(klass)    (G_TYPE_CHECK_CLASS_TYPE ((klass), GCR_TYPE_COLLECTION))
Packit b00eeb
#define GCR_SIMPLE_COLLECTION_GET_CLASS(obj)     (G_TYPE_INSTANCE_GET_CLASS ((obj), GCR_TYPE_COLLECTION, GcrSimpleCollectionClass))
Packit b00eeb
Packit b00eeb
typedef struct _GcrSimpleCollection GcrSimpleCollection;
Packit b00eeb
typedef struct _GcrSimpleCollectionClass GcrSimpleCollectionClass;
Packit b00eeb
typedef struct _GcrSimpleCollectionPrivate GcrSimpleCollectionPrivate;
Packit b00eeb
Packit b00eeb
struct _GcrSimpleCollection {
Packit b00eeb
	GObject parent;
Packit b00eeb
Packit b00eeb
	/*< private >*/
Packit b00eeb
	GcrSimpleCollectionPrivate *pv;
Packit b00eeb
};
Packit b00eeb
Packit b00eeb
struct _GcrSimpleCollectionClass {
Packit b00eeb
	GObjectClass parent_class;
Packit b00eeb
};
Packit b00eeb
Packit b00eeb
GType               gcr_simple_collection_get_type                (void);
Packit b00eeb
Packit b00eeb
GcrCollection*      gcr_simple_collection_new                     (void);
Packit b00eeb
Packit b00eeb
void                gcr_simple_collection_add                     (GcrSimpleCollection *self,
Packit b00eeb
                                                                   GObject *object);
Packit b00eeb
Packit b00eeb
void                gcr_simple_collection_remove                  (GcrSimpleCollection *self,
Packit b00eeb
                                                                   GObject *object);
Packit b00eeb
Packit b00eeb
G_END_DECLS
Packit b00eeb
Packit b00eeb
#endif /* __GCR_SIMPLE_COLLECTION_H__ */