Update contrib.
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dbus-gparser.h parse DBus description files
4 * Copyright (C) 2003 Red Hat, Inc.
6 * Licensed under the Academic Free License version 2.1
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #ifndef DBUS_GLIB_PARSER_H
24 #define DBUS_GLIB_PARSER_H
26 #include <dbus/dbus.h>
28 #include "dbus-gidl.h"
32 typedef struct Parser Parser;
34 Parser* parser_new (void);
35 Parser* parser_ref (Parser *parser);
36 void parser_unref (Parser *parser);
37 gboolean parser_check_doctype (Parser *parser,
40 gboolean parser_start_element (Parser *parser,
41 const char *element_name,
42 const char **attribute_names,
43 const char **attribute_values,
45 gboolean parser_end_element (Parser *parser,
46 const char *element_name,
48 gboolean parser_content (Parser *parser,
52 gboolean parser_finished (Parser *parser,
55 NodeInfo* description_load_from_file (const char *filename,
57 NodeInfo* description_load_from_string (const char *str,
61 NodeInfo* parser_get_nodes (Parser *parser);
65 #endif /* DBUS_GLIB_GPARSER_H */