Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / senf / Socket / SocketHandle.ih
index de34df0..da397be 100644 (file)
@@ -33,7 +33,7 @@
 #include <boost/scoped_ptr.hpp>
 #include "FileHandle.hh"
 
-///////////////////////////////ih.p////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 
 namespace senf {
 
@@ -63,7 +63,7 @@ namespace senf {
                                         ///< Value assigment
                                         /**< This operator will assign the string from any
                                              arbitrary type. It will use boost::lexical_cast to
-                                             convert the argument to its string representation. 
+                                             convert the argument to its string representation.
 
                                              If the string is non-empty, an additional separating
                                              comma is added to the string. */
@@ -100,14 +100,14 @@ namespace senf {
         : public FileBody
     {
     public:
-        ///////////////////////////////////////////////////////////////////////////
+        //-/////////////////////////////////////////////////////////////////////////////////////////
         // Types
 
         typedef boost::intrusive_ptr<SocketBody> ptr;
 
-        ///////////////////////////////////////////////////////////////////////////
+        //-/////////////////////////////////////////////////////////////////////////////////////////
         ///\name Structors and default members
-        ///@{
+        //\{
 
         SocketBody(bool isServer);      /**< \param isServer \c true, if this socket is a server
                                              socket, false otherwise */
@@ -119,8 +119,8 @@ namespace senf {
         // no copy
         // no conversion constructors
 
-        ///@}
-        ///////////////////////////////////////////////////////////////////////////
+        //\}
+        //-/////////////////////////////////////////////////////////////////////////////////////////
 
         SocketProtocol & protocol() const; ///< Access the protocol instance
 
@@ -157,8 +157,8 @@ namespace senf {
     };
 
     template <class SProtocol>
-    class ProtocolSocketBody 
-        : public SocketBody, 
+    class ProtocolSocketBody
+        : public SocketBody,
           private SProtocol,
           public senf::pool_alloc_mixin< ProtocolSocketBody<SProtocol> >
     {
@@ -174,7 +174,7 @@ namespace senf {
                                         /**< \param isServer \c true, if this socket is a server
                                              socket, false otherwise
                                              \param fd socket file descriptor */
-        
+
     private:
         virtual SocketProtocol const & v_protocol() const;
         virtual std::string v_protocolName() const;
@@ -184,7 +184,7 @@ namespace senf {
 
 }
 
-///////////////////////////////ih.e////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 #endif
 
 \f