Utils/Logger: Fix SENF_LOG_CONF to support top-level areas and streams
[senf.git] / Utils / Logger / Target.ih
index 0506fc5..b0b61d9 100644 (file)
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
-// Kompetenzzentrum fuer NETwork research (NET)
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -48,6 +48,9 @@ namespace detail {
 
         void timeSource(std::auto_ptr<TimeSource> source);
 
+        void routed();
+        bool fallbackRouting();
+
     private:
         TargetRegistry();
         
@@ -57,6 +60,8 @@ namespace detail {
         typedef std::set<Target *> Targets;
         Targets targets_;
         boost::scoped_ptr<TimeSource> timeSource_;
+
+        bool fallbackRouting_;
         
         friend class senf::log::Target;
         friend class senf::singleton<TargetRegistry>;