Fix a Gtk warning when checking path input in the log viewer.
[anjuta-git-plugin.git] / plugins / symbol-browser / an_symbol_iter.h
blob3e9ee20a7a0495977fdd56df8cf56abeeefb957b
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
2 /*
3 * an_symbol_iter.h
4 * Copyright (C) Naba Kumar <naba@gnome.org>
5 *
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 #ifndef __ANJUTA_SYMBOL_ITER__
21 #define __ANJUTA_SYMBOL_ITER__
23 #include <glib.h>
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
39 AnjutaSymbol parent;
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);
51 G_END_DECLS
52 #endif