Packets: Fix VariantParser invalid parser access bug
[senf.git] / Utils / Logger / StreamRegistry.hh
index 6fd6dcd..c35b69d 100644 (file)
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
-// Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
+// 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
@@ -23,8 +23,8 @@
 /** \file
     \brief StreamRegistry public header */
 
-#ifndef HH_StreamRegistry_
-#define HH_StreamRegistry_ 1
+#ifndef HH_SENF_Utils_Logger_StreamRegistry_
+#define HH_SENF_Utils_Logger_StreamRegistry_ 1
 
 // Custom includes
 #include <map>
@@ -65,7 +65,7 @@ namespace log {
         typedef boost::transform_iterator<SelectName, Registry::const_iterator> iterator;
 
 #       ifdef DOXYGEN
-        // Hmm ... doxygen does not understand using declarations ...
+        // Hmm ... doxygen does not understand 'using declarations' ...
         /// Access stream registry singleton instance
         static AreaRegistry & instance();
 #       endif
@@ -79,6 +79,7 @@ namespace log {
         StreamRegistry();
 
         void registerStream(detail::StreamBase const & stream);
+        detail::StreamBase const * lookup(std::string const & name);
 
         Registry registry_;