Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / senf / Scheduler / SignalEvent.ih
index 96f9261..553262e 100644 (file)
@@ -1,6 +1,6 @@
 // $Id$
 //
-// Copyright (C) 2008 
+// Copyright (C) 2008
 // Fraunhofer Institute for Open Communication Systems (FOKUS)
 // Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 
 // Custom includes
 #include "FdManager.hh"
-#include <boost/intrusive/iset.hpp>
+#include <senf/boost_intrusive/iset.hpp>
 #include <senf/Utils/Exception.hh>
 #include <senf/Utils/singleton.hh>
 
-///////////////////////////////ih.p////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 
 namespace senf {
 namespace scheduler {
@@ -48,7 +48,7 @@ namespace detail {
 
     struct FindNumericSignal {
         bool operator()(SignalEvent const & a, int b) const
-            { return a.signal_ < b; } 
+            { return a.signal_ < b; }
         bool operator()(int a, SignalEvent const & b) const
             { return a < b.signal_; }
     };
@@ -73,7 +73,7 @@ namespace detail {
         bool empty() const;
 
         struct DuplicateSignalRegistrationException : public Exception
-        { DuplicateSignalRegistrationException() 
+        { DuplicateSignalRegistrationException()
               : Exception("duplicate signal registration") {} };
 
     protected:
@@ -99,7 +99,7 @@ namespace detail {
 
 }}}
 
-///////////////////////////////ih.e////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 #endif
 
 \f