Updated Spanish translation
[anjuta-git-plugin.git] / plugins / gdb / parser.h
blob7f35c8fc43410f2df1ce7cd54d2bcc92c57807bc
1 /*
2 * parser.c Copyright (C) 2002
3 * Etay Meiri <etay-m@bezeqint.net>
4 * Jean-Noel Guiheneuf <jnoel@saudionline.com.sa>
6 * Adapted from kdevelop - gdbparser.cpp Copyright (C) 1999
7 * by John Birch <jb.nz@writeme.com>
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the Free
11 * Software Foundation; either version 2 of the License, or (at your option)
12 * any later version.
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 * for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc., 59
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 #ifndef _PARSER_H_
25 #define _PARSER_H_
27 #include "gdbmi.h"
29 #include <libanjuta/interfaces/ianjuta-debugger.h>
31 G_BEGIN_DECLS
33 IAnjutaDebuggerWatch* gdb_watch_parse (const GDBMIValue *mi_results);
34 void gdb_watch_free (IAnjutaDebuggerWatch* this);
36 G_END_DECLS
38 #endif