Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / senf / Socket / ProtocolClientSocketHandle.hh
index 8492e3b..64e4309 100644 (file)
 #include <senf/Utils/Tags.hh>
 
 #include "ProtocolClientSocketHandle.mpp"
-///////////////////////////////hh.p////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 
 namespace senf {
 
     /// \addtogroup handle_group
-    /// @{
+    //\{
 
     template <class Protocol> class ProtocolServerSocketHandle;
 
@@ -63,14 +63,14 @@ namespace senf {
         : public ClientSocketHandle<typename SocketProtocol::Policy>
     {
     public:
-        ///////////////////////////////////////////////////////////////////////////
+        //-////////////////////////////////////////////////////////////////////////
         // Types
 
         typedef SocketProtocol Protocol; ///< The sockets protocol
 
-        ///////////////////////////////////////////////////////////////////////////
+        //-////////////////////////////////////////////////////////////////////////
         ///\name Structors and default members
-        ///@{
+        //\{
 
         /** \brief Create new client socket
 
@@ -88,23 +88,22 @@ namespace senf {
 
         /** \brief Create uninitialized socket variable
 
-            This special constructor is called when passing
-            ProtocolClientSocketHandle::Uninitialized as only argument to the constructor. This will
-            create an in-\ref valid() socket handle which can however be assigned later with another
-            socket instance.
+            This special constructor is called when passing \c senf::noinit as only argument to
+            the constructor. This will create an in-\ref valid() socket handle which can however
+            be assigned later with another socket instance.
 
             \implementation The socket handle will have no \c body allocated.
          */
         ProtocolClientSocketHandle(senf::NoInit_t);
 
-        ///@}
-        ///////////////////////////////////////////////////////////////////////////
+        //\}
+        //-////////////////////////////////////////////////////////////////////////
 
-        Protocol  & protocol();         ///< Access the protocol interface
+        Protocol & protocol();          ///< Access the protocol interface
                                         /**< The returned protocol class reference gives access to
-                                           the complete protocol interface as defined by that
-                                           class. See the respective protocol class documentation.
-                                           \returns \a Protocol class reference */
+                                             the complete protocol interface as defined by that
+                                             class. See the respective protocol class documentation.
+                                             \returns \a Protocol class reference */
 
         static ProtocolClientSocketHandle cast_static(FileHandle handle);
         static ProtocolClientSocketHandle cast_dynamic(FileHandle handle);
@@ -119,10 +118,10 @@ namespace senf {
         friend class ProtocolServerSocketHandle<Protocol>;
     };
 
-    /// @}
+    //\}
 }
 
-///////////////////////////////hh.e////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 //#include "ProtocolClientSocketHandle.cci"
 //#include "ProtocolClientSocketHandle.ct"
 #include "ProtocolClientSocketHandle.cti"