sp-desc.cpp revision 5be4458b67cd4fa563753e5f373bb0b01c2d15e0
/*
* SVG <desc> implementation
*
* Authors:
* Jeff Schiller <codedread@gmail.com>
*
* Copyright (C) 2008 Jeff Schiller
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "sp-desc.h"
static Inkscape::XML::Node *sp_desc_write(SPObject *object, Inkscape::XML::Document *doc, Inkscape::XML::Node *repr, guint flags);
static SPObjectClass *desc_parent_class;
GType sp_desc_get_type (void)
{
if (!desc_type) {
sizeof (SPDescClass),
sizeof (SPDesc),
16,
NULL, /* value_table */
};
}
return desc_type;
}
{
}
}
}
{
}
Inkscape::XML::Node* CDesc::onWrite(Inkscape::XML::Document* doc, Inkscape::XML::Node* repr, guint flags) {
if (!repr) {
}
return repr;
}
/**
* Writes it's settings to an incoming repr object, if any.
*/
static Inkscape::XML::Node *sp_desc_write(SPObject *object, Inkscape::XML::Document *doc, Inkscape::XML::Node *repr, guint flags)
{
}