fix: missing include added
[senf.git] / senf / Utils / IpChecksum.hh
index a8ea1ff..d5b73da 100644 (file)
 #include <boost/cstdint.hpp>
 
 //#include "IpChecksum.mpp"
-///////////////////////////////hh.p////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 
 namespace senf {
-    
+
     /** \brief Calculate TCP/IP 16bit checksum value
 
         This class allows calculation of the 16bit checksum value as defined in the TCP/IP v4
@@ -49,17 +49,17 @@ namespace senf {
     class IpChecksum
     {
     public:
-        ///////////////////////////////////////////////////////////////////////////
+        //-////////////////////////////////////////////////////////////////////////
         // Types
 
-        ///////////////////////////////////////////////////////////////////////////
+        //-////////////////////////////////////////////////////////////////////////
         ///\name Structors and default members
-        ///@{
+        //\{
 
         IpChecksum();
 
-        ///@}
-        ///////////////////////////////////////////////////////////////////////////
+        //\}
+        //-////////////////////////////////////////////////////////////////////////
 
         void feed(boost::uint8_t byte); ///< Feed single byte
 
@@ -68,7 +68,7 @@ namespace senf {
                                         ///< Feed range of bytes
 
         boost::uint16_t sum() const;    ///< Calculate checksum
-    
+
     protected:
 
     private:
@@ -76,10 +76,10 @@ namespace senf {
         bool odd_;
     };
 
-    
+
 }
 
-///////////////////////////////hh.e////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 #include "IpChecksum.cci"
 //#include "IpChecksum.ct"
 #include "IpChecksum.cti"