/* * SVG 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" #include "xml/repr.h" #include "sp-factory.h" namespace { SPObject* createTitle() { return new SPTitle(); } bool titleRegistered = SPFactory::instance().registerObject("svg:title", createTitle); } SPTitle::SPTitle() : SPObject() { } SPTitle::~SPTitle() { } Inkscape::XML::Node* SPTitle::write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, guint flags) { SPTitle* object = this; if (!repr) { repr = object->getRepr()->duplicate(xml_doc); } SPObject::write(xml_doc, repr, flags); return repr; }