sp-mesh-row.cpp revision 1375fe5c9f0af935233ad027bad7e14094a3414e
/** @file
* @gradient meshpatch class.
*/
/* Authors:
* Lauris Kaplinski <lauris@kaplinski.com>
* bulia byak
* Johan Engelen <j.b.c.engelen@ewi.utwente.nl>
* Jon A. Cruz <jon@joncruz.org>
* Tavmjong Bah <tavjong@free.fr>
*
* Copyright (C) 1999,2005 authors
* Copyright (C) 2010 Jon A. Cruz
* Copyright (C) 2012 Tavmjong Bah
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "sp-mesh-row.h"
#include "style.h"
#include "sp-factory.h"
namespace {
SPObject* createMeshRow() {
return new SPMeshRow();
}
}
{
if (SP_IS_MESHROW(obj)) {
}
}
return result;
}
{
// The closest previous SPObject that is an SPMeshRow *should* be ourself.
if (SP_IS_MESHROW(obj)) {
// Sanity check to ensure we have a proper sibling structure.
if (meshrow->getNextMeshRow() == this) {
} else {
}
break;
}
}
return result;
}
/*
* Mesh Row
*/
}
}
}
/**
* Virtual build: set meshrow attributes from its associated XML node.
*/
}
/**
* Virtual set: set attribute to value.
*/
Inkscape::XML::Node* SPMeshRow::write(Inkscape::XML::Document* xml_doc, Inkscape::XML::Node* repr, guint flags) {
}
return repr;
}
/**
* Virtual write: write object attributes to repr.
*/
/*
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:fileencoding=utf-8:textwidth=99 :