diff options
author | nobody <nobody@localhost> | 2002-12-06 03:58:38 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2002-12-06 03:58:38 +0800 |
commit | 472a367597cd6158e2e9dc3e2210bf9efab4d112 (patch) | |
tree | dbf36038cda1070ffb9d92e023654b2bdf1451b4 /e-util/e-list-iterator.h | |
parent | cf5e09fda7bba7532d7be4b9949f7737a4a418cd (diff) | |
download | gsoc2013-evolution-R2_0.tar gsoc2013-evolution-R2_0.tar.gz gsoc2013-evolution-R2_0.tar.bz2 gsoc2013-evolution-R2_0.tar.lz gsoc2013-evolution-R2_0.tar.xz gsoc2013-evolution-R2_0.tar.zst gsoc2013-evolution-R2_0.zip |
This commit was manufactured by cvs2svn to create tag 'R2_0'.R2_0
svn path=/tags/R2_0/; revision=19030
Diffstat (limited to 'e-util/e-list-iterator.h')
-rw-r--r-- | e-util/e-list-iterator.h | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/e-util/e-list-iterator.h b/e-util/e-list-iterator.h deleted file mode 100644 index b3a8953d80..0000000000 --- a/e-util/e-list-iterator.h +++ /dev/null @@ -1,46 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ -/* - * Authors: - * Chris Lahey <clahey@ximian.com> - * - * Copyright (C) 2000 Ximian, Inc. - * Copyright (C) 1999 The Free Software Foundation - */ - -#ifndef __E_LIST_ITERATOR_H__ -#define __E_LIST_ITERATOR_H__ - -typedef struct _EListIterator EListIterator; -typedef struct _EListIteratorClass EListIteratorClass; - -#include <stdio.h> -#include <time.h> -#include <glib.h> -#include <glib-object.h> - -#include <e-util/e-iterator.h> -#include <e-util/e-list.h> - -#define E_TYPE_LIST_ITERATOR (e_list_iterator_get_type ()) -#define E_LIST_ITERATOR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), E_TYPE_LIST_ITERATOR, EListIterator)) -#define E_LIST_ITERATOR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), E_TYPE_LIST_ITERATOR, EListIteratorClass)) -#define E_IS_LIST_ITERATOR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), E_TYPE_LIST_ITERATOR)) -#define E_IS_LIST_ITERATOR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), E_TYPE_LIST_ITERATOR)) - -struct _EListIterator { - EIterator parent; - - EList *list; - GList *iterator; -}; - -struct _EListIteratorClass { - EIteratorClass parent_class; -}; - -EIterator *e_list_iterator_new (EList *list); - -/* Standard Glib function */ -GType e_list_iterator_get_type (void); - -#endif /* ! __E_LIST_ITERATOR_H__ */ |