2 * Copyright (C) 2007 Martin Willi
3 * Hochschule fuer Technik Rapperswil
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
24 #include <utils/enumerator.h>
26 typedef struct xml_t xml_t
;
29 * Simple enumerator based XML parser.
31 * An xml_t is a single node of the XML tree, but also serves as root node
32 * and therefore the document.
33 * This object has no destructor, the tree gets destroyed when all enumerator
34 * instances get destroyed.
39 * Create an enumerator over all children.
41 * Enumerated values must not be manipulated or freed.
43 * @return enumerator over (xml_t* child, char *name, char *value)
45 enumerator_t
* (*children
)(xml_t
*this);
48 * Get an attribute value by its name.
50 * @param name name of the attribute
51 * @return attribute value, NULL if not found
53 char *(*get_attribute
)(xml_t
*this, char *name
);
57 * Create a xml instance.
59 xml_t
*xml_create(char *xml
);
61 #endif /** XML_H_ @}*/