Add support for multiple VAR+=VALUE arguments
[senf.git] / senf / PPI / IOEvent.hh
index 0d19eb3..a314fd9 100644 (file)
@@ -27,9 +27,9 @@
 #define HH_SENF_PPI_IOEvent_ 1
 
 // Custom includes
-#include "../Scheduler/Scheduler.hh"
+#include <senf/Scheduler/Scheduler.hh>
 #include "Events.hh"
-#include "../Utils/Exception.hh"
+#include <senf/Utils/Exception.hh>
 
 //#include "IOEvent.mpp"
 ///////////////////////////////hh.p////////////////////////////////////////
@@ -54,7 +54,7 @@ namespace ppi {
         type of event is specified using the \a events mask with values from EventFlags.
 
         There are two types of flags:
-        
+
         \li <em>Event flags</em> (\ref Read, \ref Prio, \ref Write) specify the type of event. The
             callback will be called whenever one of the specified events occurs on the filehandle
         \li <em>Error flags</em> (\ref Hup, \ref Err) specify some type of error condition on the
@@ -76,7 +76,7 @@ namespace ppi {
         // This is stupid, however there is no way to import the Scheduler::EventId enum together
         // with the enumeration symbols
 
-        enum EventFlags { 
+        enum EventFlags {
               Read  = scheduler::FdEvent::EV_READ   /**< FileHandle is readable */
             , Prio = scheduler::FdEvent::EV_PRIO    /**< FileHandle priority data is readable */
             , Write = scheduler::FdEvent::EV_WRITE  /**< FileHandle is writable */
@@ -101,25 +101,25 @@ namespace ppi {
 
         /** \brief Unhandled error condition */
         struct ErrorException : public senf::Exception
-        { ErrorException() : senf::Exception("senf::ppi::IOEvent::ErrorException"){} };
+        { ErrorException() : senf::Exception("senf::ppi::IOEvent::ErrorException") {} };
 
         /** \brief Unhandled hangup condition */
         struct HangupException : public senf::Exception
-        { HangupException() : senf::Exception("senf::ppi::IOEvent::HangupException"){} };
+        { HangupException() : senf::Exception("senf::ppi::IOEvent::HangupException") {} };
 
     protected:
 
     private:
         virtual void v_enable();
         virtual void v_disable();
-        
+
         void cb(int event);
 
         int fd_;
         scheduler::FdEvent event_;
     };
 
-    
+
 }}
 
 ///////////////////////////////hh.e////////////////////////////////////////