sp-defs.cpp revision a0937999c7e9e13e614b317a073bb56f1f47b720
/*
* SVG <defs> implementation
*
* Authors:
* Lauris Kaplinski <lauris@kaplinski.com>
* Jon A. Cruz <jon@joncruz.org>
* Abhishek Sharma
*
* Copyright (C) 2000-2002 authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
/*
* fixme: We should really check childrens validity - currently everything
* flips in
*/
#include "sp-defs.h"
#include "document.h"
{
if (!defs_type) {
sizeof(SPDefsClass),
NULL, /* base_init */
NULL, /* base_finalize */
NULL, /* class_finalize */
NULL, /* class_data */
sizeof(SPDefs),
16, /* n_preallocs */
NULL, /* value_table */
};
}
return defs_type;
}
{
}
}
}
{
}
}
{
}
if (flags & SP_OBJECT_MODIFIED_FLAG) {
}
while (l) {
l = g_slist_remove(l, child);
}
}
}
{
}
if (flags & SP_OBJECT_MODIFIED_FLAG) {
}
l = g_slist_prepend(l, child);
}
l = g_slist_reverse(l);
while (l) {
l = g_slist_remove(l, child);
}
}
}
{
}
Inkscape::XML::Node* CDefs::onWrite(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, guint flags) {
if (flags & SP_OBJECT_WRITE_BUILD) {
if (!repr) {
}
if (crepr) {
l = g_slist_prepend(l, crepr);
}
}
while (l) {
l = g_slist_remove(l, l->data);
}
} else {
}
}
return repr;
}
Inkscape::XML::Node * SPDefs::write(SPObject *object, Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, guint flags)
{
}
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :