Utils/Logger: cleaned up some #includes
[senf.git] / senf / Utils / Logger / StreamRegistry.hh
index 8821e3a..7856eab 100644 (file)
 
 // Custom includes
 #include <map>
-#include <functional>
 #include <ext/functional>
 #include <boost/iterator/transform_iterator.hpp>
-#include "Levels.hh"
 #include <senf/Utils/singleton.hh>
 
 //#include "StreamRegistry.mpp"
 #include "StreamRegistry.ih"
-///////////////////////////////hh.p////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 
 namespace senf {
 namespace log {
 
     namespace detail { struct StreamBase; }
 
-    /** \brief Stream registry 
-        
+    /** \brief Stream registry
+
         The stream registry keeps track of all streams defined. stream classes are defined as
         singletons and will automatically register with this registry.
 
         The stream registry exposes a forward sequence interface which is a sequence of the names of
         all registered streams.
      */
-    class StreamRegistry 
+    class StreamRegistry
         : public senf::singleton<StreamRegistry>
     {
         typedef std::map<std::string, detail::StreamBase const *> Registry;
 
     public:
-        typedef boost::transform_iterator< ::__gnu_cxx::select1st<Registry::value_type>, 
+        typedef boost::transform_iterator< ::__gnu_cxx::select1st<Registry::value_type>,
                                            Registry::const_iterator > iterator;
 
 #       ifdef DOXYGEN
@@ -87,7 +85,7 @@ namespace log {
 
 }}
 
-///////////////////////////////hh.e////////////////////////////////////////#
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 #include "StreamRegistry.cci"
 //#include "StreamRegistry.ct"
 //#include "StreamRegistry.cti"