Code

overwritten heap, wrong casts fixed. Closes SF#1575829
[inkscape.git] / src / ui / widget / registry.h
1 /** \file
2  * \brief
3  *
4  * Authors:
5  *   Ralf Stephan <ralf@ark.in-berlin.de>
6  *
7  * Copyright (C) 2005 Authors
8  *
9  * Released under GNU GPL.  Read the file 'COPYING' for more information.
10  */
12 #ifndef INKSCAPE_UI_WIDGET_REGISTRY__H
13 #define INKSCAPE_UI_WIDGET_REGISTRY__H
15 #include <map>
16 #include <glibmm/i18n.h>
17 #include <glibmm/ustring.h>
19 namespace Gtk {
20     class Object;
21 }
23 namespace Inkscape {
24 namespace UI {
25 namespace Widget {
26    
27 class Registry {
28 public:
29     Registry();
30     ~Registry();
31     
32     bool               isUpdating();
33     void               setUpdating (bool);
35 protected:
36     bool _updating;
37 };
39 } // namespace Dialog
40 } // namespace UI
41 } // namespace Widget
43 #endif // INKSCAPE_UI_WIDGET_REGISTRY__H
45 /*
46   Local Variables:
47   mode:c++
48   c-file-style:"stroustrup"
49   c-file-offsets:((innamespace . 0)(inline-open . 0))
50   indent-tabs-mode:nil
51   fill-column:99
52   End:
53 */
54 // vim: filetype=c++:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :