Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / senf / Utils / Console / ProgramOptions.cc
index 951c5f0..044f10c 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>
 // Custom includes
 #include <boost/algorithm/string/predicate.hpp>
 #include <boost/format.hpp>
-#include "../../Utils/range.hh"
+#include <senf/Utils/Range.hh>
 #include "OverloadedCommand.hh"
 
 //#include "ProgramOptions.mpp"
 #define prefix_
-///////////////////////////////cc.p////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 
-///////////////////////////////////////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 // senf::console::detail::ProgramOptionsSource::NonOptionContainer
 
 prefix_ senf::console::detail::ProgramOptionsSource::NonOptionContainer::~NonOptionContainer()
 {}
 
-///////////////////////////////////////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 // senf::console::detail::ProgramOptionsSource
 
 prefix_ void senf::console::detail::ProgramOptionsSource::v_parse(RestrictedExecutor & executor)
@@ -83,7 +83,7 @@ prefix_ void senf::console::detail::ProgramOptionsSource::v_parse(RestrictedExec
                             --n;
                         }
                     }
-                    else 
+                    else
                         param = arg.substr(i+1);
                     i = arg.size();
                 }
@@ -120,7 +120,7 @@ senf::console::detail::ProgramOptionsSource::parseLongOption(std::string const &
 
     ParseCommandInfo cmd;
     Path path;
+
     DirectoryNode::ptr cwd (executor.root().thisptr());
     std::string::size_type b (0);
     while (b < name.size()) {
@@ -192,7 +192,7 @@ senf::console::detail::ProgramOptionsSource::parseNonOption(std::string const &
     nonOptions_->push_back(arg);
 }
 
-///////////////////////////////////////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 
 prefix_ void senf::console::parseOptions(int argc, char const ** argv, DirectoryNode & root)
 {
@@ -200,7 +200,7 @@ prefix_ void senf::console::parseOptions(int argc, char const ** argv, Directory
     opts.parse();
 }
 
-///////////////////////////////cc.e////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 #undef prefix_
 //#include "ProgramOptions.mpp"