sp-tag-use.h revision a73b1f7fc9a9ba7e0d68f33292a885da6c2981d0
#ifndef __SP_TAG_USE_H__
#define __SP_TAG_USE_H__
/*
* SVG <inkscape:tagref> implementation
*
* Authors:
* Theodore Janeczko
*
* Copyright (C) Theodore Janeczko 2012 <flutterguy317@gmail.com>
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include <stddef.h>
#include "svg/svg-length.h"
#include "sp-object.h"
// item built from the original's repr (the visible clone)
// relative to the SPUse itself, it is treated as a child, similar to a grouped item relative to its group
SPTagUse();
virtual Inkscape::XML::Node* write(Inkscape::XML::Document* doc, Inkscape::XML::Node* repr, guint flags);
//virtual SPItem* unlink();
// the reference to the original object
};
#endif