Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / senf / Scheduler / Poller.hh
index bc29953..3ba1ceb 100644 (file)
@@ -1,6 +1,6 @@
 // $Id$
 //
-// Copyright (C) 2008 
+// Copyright (C) 2008
 // Fraunhofer Institute for Open Communication Systems (FOKUS)
 // Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
@@ -33,7 +33,7 @@
 #include <boost/range/iterator_range.hpp>
 
 //#include "Poller.mpp"
-///////////////////////////////hh.p////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 
 namespace senf {
 namespace scheduler {
@@ -60,27 +60,27 @@ namespace detail {
         static int const NumEvents = 8;
 
     public:
-        ///////////////////////////////////////////////////////////////////////////
+        //-////////////////////////////////////////////////////////////////////////
         // Types
-        
+
         typedef Value value_type;
         typedef boost::transform_iterator<GetPollResult, epoll_event*> iterator;
         typedef boost::iterator_range<iterator> range;
 
-        enum Events { 
+        enum Events {
             EV_READ = EPOLLIN, EV_PRIO = EPOLLPRI, EV_WRITE = EPOLLOUT,
-            EV_HUP = EPOLLHUP, EV_ERR = EPOLLERR 
+            EV_HUP = EPOLLHUP, EV_ERR = EPOLLERR
         };
-        
-        ///////////////////////////////////////////////////////////////////////////
+
+        //-////////////////////////////////////////////////////////////////////////
         ///\name Structors and default members
-        ///@{
+        //\{
 
         Poller();
         ~Poller();
 
-        ///@}
-        ///////////////////////////////////////////////////////////////////////////
+        //\}
+        //-////////////////////////////////////////////////////////////////////////
 
         bool set(int fd, int events, Value * data); ///< Set file descriptor event data and mask
                                         /**< The Poller does \e not own \a data. The value is owned
@@ -90,7 +90,7 @@ namespace detail {
         range wait();                   ///< Wait for one event
                                         /**< \returns a range of iterators which iterate over the
                                              data values registered with the event */
-        
+
         void timeout(int t);            ///< Set event timeout to \a t milliseconds
         int timeout() const;            ///< Current event timeout
 
@@ -102,7 +102,7 @@ namespace detail {
 
 }}}
 
-///////////////////////////////hh.e////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 //#include "Poller.cci"
 #include "Poller.ct"
 #include "Poller.cti"