sp-title.cpp revision 60282e8335d7b6ae7020613bb22c7c69a6909fbb
#define __SP_TITLE_C__
/*
* SVG <title> 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-title.h"
static Inkscape::XML::Node *sp_title_write(SPObject *object, Inkscape::XML::Document *doc, Inkscape::XML::Node *repr, guint flags);
static SPObjectClass *title_parent_class;
sp_title_get_type (void)
{
static GType title_type = 0;
if (!title_type) {
GTypeInfo title_info = {
sizeof (SPTitleClass),
sizeof (SPTitle),
16,
NULL, /* value_table */
};
}
return title_type;
}
static void
{
}
static void
{
}
/*
* \brief Writes it's settings to an incoming repr object, if any
*/
sp_title_write(SPObject *object, Inkscape::XML::Document *doc, Inkscape::XML::Node *repr, guint flags)
{
if (!repr) {
}
}
return repr;
}