Blame gdata/gdata-comparable.h

Packit 4b6dd7
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
Packit 4b6dd7
/*
Packit 4b6dd7
 * GData Client
Packit 4b6dd7
 * Copyright (C) Philip Withnall 2010 <philip@tecnocode.co.uk>
Packit 4b6dd7
 *
Packit 4b6dd7
 * GData Client is free software; you can redistribute it and/or
Packit 4b6dd7
 * modify it under the terms of the GNU Lesser General Public
Packit 4b6dd7
 * License as published by the Free Software Foundation; either
Packit 4b6dd7
 * version 2.1 of the License, or (at your option) any later version.
Packit 4b6dd7
 *
Packit 4b6dd7
 * GData Client is distributed in the hope that it will be useful,
Packit 4b6dd7
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 4b6dd7
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 4b6dd7
 * Lesser General Public License for more details.
Packit 4b6dd7
 *
Packit 4b6dd7
 * You should have received a copy of the GNU Lesser General Public
Packit 4b6dd7
 * License along with GData Client.  If not, see <http://www.gnu.org/licenses/>.
Packit 4b6dd7
 */
Packit 4b6dd7
Packit 4b6dd7
#ifndef GDATA_COMPARABLE_H
Packit 4b6dd7
#define GDATA_COMPARABLE_H
Packit 4b6dd7
Packit 4b6dd7
#include <glib.h>
Packit 4b6dd7
#include <glib-object.h>
Packit 4b6dd7
Packit 4b6dd7
G_BEGIN_DECLS
Packit 4b6dd7
Packit 4b6dd7
#define GDATA_TYPE_COMPARABLE		(gdata_comparable_get_type ())
Packit 4b6dd7
#define GDATA_COMPARABLE(o)		(G_TYPE_CHECK_INSTANCE_CAST ((o), GDATA_TYPE_COMPARABLE, GDataComparable))
Packit 4b6dd7
#define GDATA_COMPARABLE_CLASS(k)	(G_TYPE_CHECK_CLASS_CAST((k), GDATA_TYPE_COMPARABLE, GDataComparableIface))
Packit 4b6dd7
#define GDATA_IS_COMPARABLE(o)		(G_TYPE_CHECK_INSTANCE_TYPE ((o), GDATA_TYPE_COMPARABLE))
Packit 4b6dd7
#define GDATA_COMPARABLE_GET_IFACE(o)	(G_TYPE_INSTANCE_GET_INTERFACE ((o), GDATA_TYPE_COMPARABLE, GDataComparableIface))
Packit 4b6dd7
Packit 4b6dd7
/**
Packit 4b6dd7
 * GDataComparable:
Packit 4b6dd7
 *
Packit 4b6dd7
 * All the fields in the #GDataComparable structure are private and should never be accessed directly.
Packit 4b6dd7
 *
Packit 4b6dd7
 * Since: 0.7.0
Packit 4b6dd7
 */
Packit 4b6dd7
typedef struct _GDataComparable		GDataComparable; /* dummy typedef */
Packit 4b6dd7
Packit 4b6dd7
/**
Packit 4b6dd7
 * GDataComparableIface:
Packit 4b6dd7
 * @parent: the parent type
Packit 4b6dd7
 * @compare_with: compares the object with an @other object of the same type, returning -1 if the object is "less than"
Packit 4b6dd7
 * the other object, 0 if they're equal, or 1 if the object is "greater than" the other. The
Packit 4b6dd7
 * function can assume that neither @self or @other will be %NULL, and that both have correct types. The function must be pure.
Packit 4b6dd7
 *
Packit 4b6dd7
 * The class structure for the #GDataComparable interface.
Packit 4b6dd7
 *
Packit 4b6dd7
 * Since: 0.7.0
Packit 4b6dd7
 */
Packit 4b6dd7
typedef struct {
Packit 4b6dd7
	GTypeInterface parent;
Packit 4b6dd7
Packit 4b6dd7
	gint (*compare_with) (GDataComparable *self, GDataComparable *other);
Packit 4b6dd7
} GDataComparableIface;
Packit 4b6dd7
Packit 4b6dd7
GType gdata_comparable_get_type (void) G_GNUC_CONST;
Packit 4b6dd7
Packit 4b6dd7
gint gdata_comparable_compare (GDataComparable *self, GDataComparable *other) G_GNUC_PURE;
Packit 4b6dd7
Packit 4b6dd7
G_END_DECLS
Packit 4b6dd7
Packit 4b6dd7
#endif /* !GDATA_COMPARABLE_H */