fixes for g++ 4.5 (some members returned "the constructor, not the type")
[senf.git] / senf / Utils / Logger / StringTarget.hh
index a8bc5a2..d6fcb47 100644 (file)
 #include "IOStreamTarget.hh"
 
 //#include "StringTarget.mpp"
-///////////////////////////////hh.p////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 
 namespace senf {
 namespace log {
-  
+
     /** \brief Store %log messages in a string buffer
 
-        This target is mostly useful for debug purposes. 
+        This target is mostly useful for debug purposes.
 
         \ingroup targets
       */
-    class StringTarget 
+    class StringTarget
         : private boost::base_from_member<std::stringstream>,
           public IOStreamTarget
     {
         typedef boost::base_from_member<std::stringstream> stream_base;
     public:
-        ///////////////////////////////////////////////////////////////////////////
+        //-////////////////////////////////////////////////////////////////////////
         // Types
 
-        ///////////////////////////////////////////////////////////////////////////
+        //-////////////////////////////////////////////////////////////////////////
         ///\name Structors and default members
-        ///@{
+        //\{
 
         StringTarget();
 
-        ///@}
-        ///////////////////////////////////////////////////////////////////////////
+        //\}
+        //-////////////////////////////////////////////////////////////////////////
 
         std::string str() const;        ///< Get log messages accumulated so far
         void clear();                   ///< Clear buffer
@@ -69,9 +69,9 @@ namespace log {
 
     };
 
-}}        
+}}
 
-///////////////////////////////hh.e////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 //#include "StringTarget.cci"
 //#include "StringTarget.ct"
 #include "StringTarget.cti"