diff options
Diffstat (limited to 'glib/glibmm/dispatcher.h')
-rw-r--r-- | glib/glibmm/dispatcher.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/glib/glibmm/dispatcher.h b/glib/glibmm/dispatcher.h index 96721651..5de499d1 100644 --- a/glib/glibmm/dispatcher.h +++ b/glib/glibmm/dispatcher.h @@ -78,6 +78,10 @@ public: */ Dispatcher(); + // noncopyable + Dispatcher(const Dispatcher&) = delete; + Dispatcher& operator=(const Dispatcher&) = delete; + /** Create new Dispatcher instance using an arbitrary main context. * @throw Glib::FileError */ @@ -93,10 +97,6 @@ private: sigc::signal<void> signal_; DispatchNotifier* notifier_; - // noncopyable - Dispatcher(const Dispatcher&); - Dispatcher& operator=(const Dispatcher&); - #ifndef DOXYGEN_SHOULD_SKIP_THIS friend class Glib::DispatchNotifier; #endif |