Code

Add missing namespaces in win32 code (thanks to Yann Papouin for pointing this out)
[inkscape.git] / src / ui / dialog / input.h
1 /** @file
2  * @brief Input devices dialog (new)
3  */
4 /* Author:
5  *   Jon A. Cruz
6  *
7  * Copyright (C) 2008 Author
8  * Released under GNU GPL.  Read the file 'COPYING' for more information.
9  */
11 #ifndef INKSCAPE_UI_DIALOG_INPUT_H
12 #define INKSCAPE_UI_DIALOG_INPUT_H
15 #include "verbs.h"
16 #include "ui/widget/panel.h"
18 namespace Inkscape {
19 namespace UI {
20 namespace Dialog {
23 class InputDialog : public UI::Widget::Panel
24 {
25 public:
26     static InputDialog &getInstance();
28     InputDialog() : UI::Widget::Panel("", "/dialogs/inputdevices2", SP_VERB_DIALOG_INPUT2) {}
29     virtual ~InputDialog() {}
30 };
32 } // namespace Dialog
33 } // namesapce UI
34 } // namespace Inkscape
36 #endif // INKSCAPE_UI_DIALOG_INPUT_H
38 /*
39   Local Variables:
40   mode:c++
41   c-file-style:"stroustrup"
42   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
43   indent-tabs-mode:nil
44   fill-column:99
45   End:
46 */
47 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :