1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
4 * Copyright (C) Naba Kumar <naba@gnome.org>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Library General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 #ifndef __ANJUTA_SYMBOL_ITER__
21 #define __ANJUTA_SYMBOL_ITER__
24 #include <glib-object.h>
25 #include "an_symbol.h"
27 typedef struct _AnjutaSymbolIter AnjutaSymbolIter
;
28 typedef struct _AnjutaSymbolIterClass AnjutaSymbolIterClass
;
29 typedef struct _AnjutaSymbolIterPriv AnjutaSymbolIterPriv
;
31 #define ANJUTA_TYPE_SYMBOL_ITER (anjuta_symbol_iter_get_type ())
32 #define ANJUTA_SYMBOL_ITER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), ANJUTA_TYPE_SYMBOL_ITER, AnjutaSymbolIter))
33 #define ANJUTA_SYMBOL_ITER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), ANJUTA_TYPE_SYMBOL_ITER, AnjutaSymbolIterClass))
34 #define ANJUTA_IS_SYMBOL_ITER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), ANJUTA_TYPE_SYMBOL_ITER))
35 #define ANJUTA_IS_SYMBOL_ITER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), ANJUTA_TYPE_SYMBOL_ITER))
37 struct _AnjutaSymbolIter
40 AnjutaSymbolIterPriv
*priv
;
43 struct _AnjutaSymbolIterClass
45 AnjutaSymbolClass parent_class
;
48 GType
anjuta_symbol_iter_get_type (void);
49 AnjutaSymbolIter
* anjuta_symbol_iter_new (const GPtrArray
*tm_tags_array
);