Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / senf / Scheduler / WriteHelper.hh
index 3b042a7..d990917 100644 (file)
 #include <string>
 #include <boost/intrusive_ptr.hpp>
 #include <boost/function.hpp>
-#include "../Utils/intrusive_refcount.hh"
-#include "Scheduler.hh"
+#include <senf/Utils/intrusive_refcount.hh>
+#include "FdEvent.hh"
 
 //#include "WriteHelper.mpp"
-///////////////////////////////hh.p////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 
 namespace senf {
 
-    /** \brief Asyncronous writing helper
+    /** \brief Asynchronous writing helper
 
         This class provides a simple asynchronous writing facility. This helper will register with
         the Scheduler to write the requested data. It will stay registered until the data has been
@@ -55,15 +55,15 @@ namespace senf {
         : public senf::intrusive_refcount
     {
     public:
-        ///////////////////////////////////////////////////////////////////////////
+        //-////////////////////////////////////////////////////////////////////////
         // Types
 
         typedef boost::intrusive_ptr<WriteHelper> ptr; ///< Smart pointer type for this class
         typedef boost::function<void (ptr)> Callback; ///< Callback type
 
-        ///////////////////////////////////////////////////////////////////////////
+        //-////////////////////////////////////////////////////////////////////////
         ///\name Structors and default members
-        ///@{
+        //\{
 
         static ptr dispatch(Handle handle, std::string const & data, Callback callback);
                                         ///< Register new WriteHelper instance
@@ -76,8 +76,8 @@ namespace senf {
                                              \param[in] callback callback
                                              \returns smart pointer to new WriteHelper instance */
 
-        ///@}
-        ///////////////////////////////////////////////////////////////////////////
+        //\}
+        //-////////////////////////////////////////////////////////////////////////
 
         Handle handle() const;
 
@@ -97,7 +97,7 @@ namespace senf {
     private:
         WriteHelper(Handle handle, std::string const & data, Callback callback);
 
-        static void dispatchProcess(ptr helper, Handle handle, 
+        static void dispatchProcess(ptr helper, Handle handle,
                                     senf::scheduler::FdEvent::Events event);
         void process(Handle handle, senf::scheduler::FdEvent::Events event);
         void done();
@@ -114,7 +114,7 @@ namespace senf {
 
 }
 
-///////////////////////////////hh.e////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 //#include "WriteHelper.cci"
 #include "WriteHelper.ct"
 #include "WriteHelper.cti"