aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-list-iterator.h
diff options
context:
space:
mode:
authornobody <nobody@localhost>2003-03-20 23:10:25 +0800
committernobody <nobody@localhost>2003-03-20 23:10:25 +0800
commitfa9fee7d6c1e0bd5c56957e0033be00155289d60 (patch)
tree01f3094eac7f66184dda3143a9ab94b832a8042c /e-util/e-list-iterator.h
parent53f87f76677e9ba7bd97ba4788d51d874fb8df08 (diff)
downloadgsoc2013-evolution-GTKHTML_3_0_3.tar.gz
gsoc2013-evolution-GTKHTML_3_0_3.tar.zst
gsoc2013-evolution-GTKHTML_3_0_3.zip
This commit was manufactured by cvs2svn to create tagGTKHTML_3_0_3
'GTKHTML_3_0_3'. svn path=/tags/GTKHTML_3_0_3/; revision=20424
Diffstat (limited to 'e-util/e-list-iterator.h')
-rw-r--r--e-util/e-list-iterator.h46
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__ */