Code

these didn't compile for me. so let's try this.
[inkscape.git] / src / ui / dialog / xml-editor.cpp
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 #ifdef HAVE_CONFIG_H
13 # include <config.h>
14 #endif
16 #include "xml-editor.h"
17 #include "verbs.h"
19 namespace Inkscape {
20 namespace UI {
21 namespace Dialog {
23 XmlEditor::XmlEditor() 
24     : Dialog ("dialogs.xml", SP_VERB_DIALOG_XML_EDITOR)
25 {
26     // TODO:  Insert widgets
28     show_all_children();
29 }
31 XmlEditor::~XmlEditor() 
32 {
33 }
35 } // namespace Dialog
36 } // namespace UI
37 } // namespace Inkscape
39 /*
40   Local Variables:
41   mode:c++
42   c-file-style:"stroustrup"
43   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
44   indent-tabs-mode:nil
45   fill-column:99
46   End:
47 */
48 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :