X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=senf%2FScheduler%2FSignalEvent.ih;h=553262e740dfd75a424fc9657715612382b15140;hb=94e4eda4358a4def564175ae42173f91307e36a4;hp=29e663c90bcad2a89533174fb735afe088ada592;hpb=601d1f509f5bb24df167a4dd5a20da67a0af9af8;p=senf.git diff --git a/senf/Scheduler/SignalEvent.ih b/senf/Scheduler/SignalEvent.ih index 29e663c..553262e 100644 --- a/senf/Scheduler/SignalEvent.ih +++ b/senf/Scheduler/SignalEvent.ih @@ -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 @@ -28,11 +28,11 @@ // Custom includes #include "FdManager.hh" -#include -#include "../Utils/Exception.hh" -#include "../Utils/singleton.hh" +#include +#include +#include -///////////////////////////////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