Code

fix compile
[inkscape.git] / src / ui / dialog / memory.h
1 /**
2  * \brief Memory statistics dialog
3  *
4  * Authors:
5  *     MenTaLguY <mental@rydia.net>
6  * 
7  * Copyright 2005 Authors
8  *
9  * Released under GNU GPL.  Read the file 'COPYING' for more information.
10  */
12 #ifndef SEEN_INKSCAPE_UI_DIALOG_MEMORY_H
13 #define SEEN_INKSCAPE_UI_DIALOG_MEMORY_H
15 #include "ui/widget/panel.h"
17 namespace Inkscape {
18 namespace UI {
19 namespace Dialog {
21 class Memory : public UI::Widget::Panel {
22 public:
23     Memory();
24     ~Memory();
26     static Memory &getInstance() { return *new Memory(); }
28 protected:
29     void _apply();
31 private:
32     Memory(Memory const &d); // no copy
33     void operator=(Memory const &d); // no assign
35     struct Private;
36     Private &_private;
37 };
39 } // namespace Dialog
40 } // namespace UI
41 } // namespace Inkscape
43 #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 :