X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Utils%2FLogger%2FAreaRegistry.ih;h=d5cd80956d1ae827d6a74fe9053b30bbcfa1ca8f;hb=7f60122e00a4680d39b199a738160eb8a5dea381;hp=53b3d1009e08de77f44d0f555f01e39f446207ba;hpb=4225875220d88a3a1c2b89a7ddae7ac864daa98d;p=senf.git diff --git a/Utils/Logger/AreaRegistry.ih b/Utils/Logger/AreaRegistry.ih index 53b3d10..d5cd809 100644 --- a/Utils/Logger/AreaRegistry.ih +++ b/Utils/Logger/AreaRegistry.ih @@ -47,12 +47,14 @@ namespace detail { /** \brief Internal: Area base class */ struct AreaBase { + AreaBase(); virtual ~AreaBase(); std::string fullName() const; virtual std::string v_name() const; void init(); + bool alive() const; unsigned limit(StreamBase const & stream) const; void updateRoutingCache(Target & target, StreamBase const & stream, unsigned limit) const; @@ -74,6 +76,7 @@ namespace detail { }; typedef std::vector RoutingCache; mutable RoutingCache routingCache_; + bool alive_; }; }}}