Code

moving trunk for module inkscape
[inkscape.git] / src / ui / dialog / xml-editor.h
1 /**
2  * \brief XML Editor dialog
3  *
4  * Authors:
5  *   Bryce W. Harrington <bryce@bryceharrington.org>
6  *
7  * Copyright (C) 2004, 2005 Authors
8  *
9  * Released under GNU GPL.  Read the file 'COPYING' for more information.
10  */
12 #ifndef INKSCAPE_DIALOG_XML_EDITOR_H
13 #define INKSCAPE_DIALOG_XML_EDITOR_H
15 #include "dialog.h"
17 #include <glibmm/i18n.h>
19 namespace Inkscape {
20 namespace UI {
21 namespace Dialog {
23 class XmlEditor : public Dialog {
24 public:
25     XmlEditor();
26     virtual ~XmlEditor();
28     static XmlEditor *create() { return new XmlEditor(); }
30 protected:
32 private:
33     XmlEditor(XmlEditor const &d);
34     XmlEditor& operator=(XmlEditor const &d);
35 };
37 } // namespace Dialog
38 } // namespace UI
39 } // namespace Inkscape
41 #endif // INKSCAPE_UI_DIALOG_XML_EDITOR_H
43 /*
44   Local Variables:
45   mode:c++
46   c-file-style:"stroustrup"
47   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
48   indent-tabs-mode:nil
49   fill-column:99
50   End:
51 */
52 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :