sp-tag.h revision a73b1f7fc9a9ba7e0d68f33292a885da6c2981d0
#ifndef SP_TAG_H_SEEN
#define SP_TAG_H_SEEN
/** \file
* SVG <inkscape:tag> implementation
*
* Authors:
* Theodore Janeczko
*
* Copyright (C) Theodore Janeczko 2012 <flutterguy317@gmail.com>
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "sp-object.h"
/* Skeleton base class */
SPTag() {}
//virtual void release();
virtual Inkscape::XML::Node* write(Inkscape::XML::Document* doc, Inkscape::XML::Node* repr, guint flags);
void setExpanded(bool isexpanded);
bool _expanded;
};
#endif /* !SP_SKELETON_H_SEEN */
/*
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 :