Code

7b75f8080812fd9359b4c88d178a1bca72a8cedd
[inkscape.git] / src / xml / element-node.h
1 /** @file
2  * @brief Element node implementation
3  */
4 /* Copyright 2004-2005 MenTaLguY <mental@rydia.net>
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2
9  * of the License, or (at your option) any later version.
10  *
11  * See the file COPYING for details.
12  *
13  */
15 #ifndef SEEN_INKSCAPE_XML_ELEMENT_NODE_H
16 #define SEEN_INKSCAPE_XML_ELEMENT_NODE_H
18 #include "xml/simple-node.h"
20 namespace Inkscape {
22 namespace XML {
24 /**
25  * @brief Element node, e.g. &lt;group /&gt;
26  */
27 class ElementNode : public SimpleNode {
28 public:
29     ElementNode(int code, Document *doc)
30     : SimpleNode(code, doc) {}
31     ElementNode(ElementNode const &other, Document *doc)
32     : SimpleNode(other, doc) {}
34     Inkscape::XML::NodeType type() const { return Inkscape::XML::ELEMENT_NODE; }
36 protected:
37     SimpleNode *_duplicate(Document* doc) const { return new ElementNode(*this, doc); }
38 };
40 }
42 }
44 #endif
45 /*
46   Local Variables:
47   mode:c++
48   c-file-style:"stroustrup"
49   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
50   indent-tabs-mode:nil
51   fill-column:99
52   End:
53 */
54 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :