diff options
author | Cyrille Chepelov <cyrille@src.gnome.org> | 2001-08-15 21:13:23 +0000 |
---|---|---|
committer | Cyrille Chepelov <cyrille@src.gnome.org> | 2001-08-15 21:13:23 +0000 |
commit | 603d249e6135b8e563d5c44255f92d533c12aa1f (patch) | |
tree | adf8dce6a3866165d2fa21b4670b6dcf0f2939cd /lib/dia_xml.h | |
parent | b3e7a20f9f903f77ca5363f5b3819e341963d89f (diff) | |
download | dia-603d249e6135b8e563d5c44255f92d533c12aa1f.tar.xz |
Added these, to simplify interactions of plug-ins with the StdProp core.
* lib/properties.h:
* lib/proplist.c: (prop_list_singleton):
* lib/propobject.c: (object_prop_by_name_type),
(object_prop_by_name):
Added these, to simplify interactions of plug-ins with the StdProp
core.
* lib/Makefile.am:
* lib/dia_xml.h:
* lib/dia_xml_libxml.h (NEW):
* app/load_save.c:
* lib/dia_xml.c:
* lib/plug-ins.c:
* lib/sheet.c:
* objects/custom/shape_info.c: A few prototypes were causing
#include hell, because we generally attempt to not pull the whole
libxml header set when we include dia_xml.h. Moved those
prototypes away for the rare cases they're necessary.
Diffstat (limited to 'lib/dia_xml.h')
-rw-r--r-- | lib/dia_xml.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/dia_xml.h b/lib/dia_xml.h index b79e66df..30ef5855 100644 --- a/lib/dia_xml.h +++ b/lib/dia_xml.h @@ -22,8 +22,6 @@ #include "geometry.h" #include "color.h" #include "font.h" -#include <tree.h> -#include <parser.h> #include "charconv.h" #ifdef __XML_TREE_H__ @@ -82,12 +80,5 @@ void data_add_font(AttributeNode attr, const DiaFont *font); DataNode data_add_composite(AttributeNode attr, const char *type); /* can be NULL */ -xmlDocPtr xmlDiaParseFile(const char *filename); -/* for potentially broken files */ -xmlDocPtr xmlDoParseFile(const char *filename); -/* use this one instead of xmlParseFile */ - -void warn_about_broken_libxml1(void); - #endif /* DIA_XML_H */ |