Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / senf / Utils / Console / Traits.cci
index 6625e60..25f119e 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>
@@ -29,9 +29,9 @@
 #include <boost/algorithm/string/predicate.hpp>
 
 #define prefix_ inline
-///////////////////////////////cci.p///////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 
-///////////////////////////////////////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 // senf::console::ArgumentTraits<bool>
 
 prefix_ void
@@ -69,7 +69,7 @@ prefix_ std::string senf::console::ArgumentTraits<bool>::str(bool value)
     return value ? "true" : "false";
 }
 
-///////////////////////////////////////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 // senf::console::ReturnValueTraits<bool>
 
 prefix_ void senf::console::ReturnValueTraits<bool>::format(bool value, std::ostream & os)
@@ -77,7 +77,7 @@ prefix_ void senf::console::ReturnValueTraits<bool>::format(bool value, std::ost
     formatTrueFalse(value, os);
 }
 
-///////////////////////////////////////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 
 prefix_ void senf::console::formatTrueFalse(bool value, std::ostream & os)
 {
@@ -104,7 +104,7 @@ prefix_ void senf::console::formatOneZero(bool value, std::ostream & os)
     os << (value ? "0" : "1");
 }
 
-///////////////////////////////cci.e///////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 #undef prefix_
 
 \f