Move boost/intrusive to senf/boost_intrusive
[senf.git] / senf / Scheduler / SignalEvent.ih
index 29e663c..4e2686a 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>
@@ -28,9 +28,9 @@
 
 // Custom includes
 #include "FdManager.hh"
-#include <boost/intrusive/iset.hpp>
-#include "../Utils/Exception.hh"
-#include "../Utils/singleton.hh"
+#include <senf/boost_intrusive/iset.hpp>
+#include <senf/Utils/Exception.hh>
+#include <senf/Utils/singleton.hh>
 
 ///////////////////////////////ih.p////////////////////////////////////////
 
@@ -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: