X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=senf%2FUtils%2FLogger%2FTarget.cci;h=e642367e5c3cfce102f10f3f1d3fb7295997927a;hb=5b2e9a63a43027c71ac470ac9bdecb72e8974951;hp=7e02f9103d575816da3a879b7eabc85978d29953;hpb=601d1f509f5bb24df167a4dd5a20da67a0af9af8;p=senf.git diff --git a/senf/Utils/Logger/Target.cci b/senf/Utils/Logger/Target.cci index 7e02f91..e642367 100644 --- a/senf/Utils/Logger/Target.cci +++ b/senf/Utils/Logger/Target.cci @@ -29,9 +29,9 @@ #include "AreaRegistry.hh" #define prefix_ inline -///////////////////////////////cci.p/////////////////////////////////////// +//-///////////////////////////////////////////////////////////////////////////////////////////////// -/////////////////////////////////////////////////////////////////////////// +//-///////////////////////////////////////////////////////////////////////////////////////////////// // senf::log::Target prefix_ void senf::log::Target::route(action_t action, int index) @@ -74,27 +74,27 @@ prefix_ bool senf::log::Target::empty() return rib_.empty(); } -/////////////////////////////////////////////////////////////////////////// +//-///////////////////////////////////////////////////////////////////////////////////////////////// // senf::log::Target::RoutingEntry prefix_ senf::log::Target::RoutingEntry::RoutingEntry(detail::StreamBase const * stream, detail::AreaBase const * area, unsigned level, action_t action) - : stream_(stream), area_(area), level_(level), action_(action) + : stream_(stream), area_(area), level_(level), action_(action) {} prefix_ senf::log::Target::RoutingEntry::RoutingEntry() - : stream_(0), area_(0), level_(0), action_(ACCEPT) + : stream_(0), area_(0), level_(0), action_(ACCEPT) {} prefix_ bool senf::log::Target::RoutingEntry::operator==(RoutingEntry const & other) const -{ - return - stream_ == other.stream_ && - area_ == other.area_ && +{ + return + stream_ == other.stream_ && + area_ == other.area_ && level_ == other.level_ && - action_ == other.action_; + action_ == other.action_; } prefix_ std::string senf::log::Target::RoutingEntry::stream() @@ -121,7 +121,7 @@ prefix_ senf::log::Target::action_t senf::log::Target::RoutingEntry::action() return action_; } -/////////////////////////////////////////////////////////////////////////// +//-///////////////////////////////////////////////////////////////////////////////////////////////// // senf::log::detail::TargetRegistry prefix_ void senf::log::detail::TargetRegistry::routed() @@ -139,7 +139,7 @@ prefix_ senf::console::ScopedDirectory<> & senf::log::detail::TargetRegistry::co return consoleDir_(); } -//////////////////////////////////////// +//-///////////////////////////////////////////////////////////////////////////////////////////////// // private members prefix_ void senf::log::detail::TargetRegistry::unregisterTarget(Target * target) @@ -147,7 +147,7 @@ prefix_ void senf::log::detail::TargetRegistry::unregisterTarget(Target * target targets_.erase(target); } -/////////////////////////////cci.e/////////////////////////////////////// +//-///////////////////////////////////////////////////////////////////////////////////////////////// #undef prefix_