X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=PPI%2FEvents.hh;h=154beba620804f0c13530aefa642ef4a660da07b;hb=cb10487f67b404334eaffa60f074b8eca8f871de;hp=d077ac4ea71ff7a7676f5c8a43b3eb9a55e5a2e4;hpb=89efe5f504c400212090aba703c7ee385f483c64;p=senf.git diff --git a/PPI/Events.hh b/PPI/Events.hh index d077ac4..154beba 100644 --- a/PPI/Events.hh +++ b/PPI/Events.hh @@ -34,7 +34,7 @@ namespace ppi { /** \brief Generic event interface baseclass - The EventDescriptor baseclass provides an interface to manuplate events in a generic + The EventDescriptor baseclass provides an interface to manipulate events in a generic way. This allows to register events or to temporarily disable event processing. */ class EventDescriptor @@ -53,7 +53,7 @@ namespace ppi { virtual void v_register(CallbackType handler) = 0; ///< Called to register the event virtual void v_unregister() = 0; ///< Called to unregister the event virtual void v_enable() = 0; ///< Called to enable the event delivery - virtual void v_disable() = 0; ///< Called to disable the event delilvery + virtual void v_disable() = 0; ///< Called to disable the event delivery virtual void v_process() = 0; ///< Called whenever the event is signaled /**< This virtual method is called \e after every call to the event handler to provide a hook for further @@ -78,4 +78,6 @@ namespace ppi { // c-file-style: "senf" // indent-tabs-mode: nil // ispell-local-dictionary: "american" +// compile-command: "scons -u test" +// comment-column: 40 // End: