Code

Pot and Dutch translation update
[inkscape.git] / src / xml / rebase-hrefs.h
1 #ifndef REBASE_HREFS_H_SEEN
2 #define REBASE_HREFS_H_SEEN
4 #include <glib/gtypes.h>
5 #include "util/list.h"
6 #include "xml/attribute-record.h"
7 struct SPDocument;
9 namespace Inkscape {
10 namespace XML {
12 gchar *calc_abs_doc_base(gchar const *doc_base);
14 void rebase_hrefs(SPDocument *doc, gchar const *new_base, bool spns);
16 Inkscape::Util::List<AttributeRecord const> rebase_href_attrs(
17     gchar const *old_abs_base,
18     gchar const *new_abs_base,
19     Inkscape::Util::List<AttributeRecord const> attributes);
21 }
22 }
25 #endif /* !REBASE_HREFS_H_SEEN */
27 /*
28   Local Variables:
29   mode:c++
30   c-file-style:"stroustrup"
31   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
32   indent-tabs-mode:nil
33   fill-column:99
34   End:
35 */
36 // vi: set autoindent shiftwidth=4 tabstop=8 filetype=cpp expandtab softtabstop=4 encoding=utf-8 textwidth=99 :