Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / senf / Utils / Console / Parse.cci
index fcbb81f..05815f8 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>
 // (disabled) #include "Parse.ih"
 
 // Custom includes
-#include "../../Utils/senfassert.hh"
+#include <senf/Utils/senfassert.hh>
 
 #define prefix_ inline
-///////////////////////////////cci.p///////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 
-///////////////////////////////////////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 // senf::console::Token
 
 prefix_ std::string const & senf::console::Token::value()
@@ -146,7 +146,7 @@ prefix_ senf::console::Token senf::console::WordToken(std::string const & value)
     return Token(Token::Word, value);
 }
 
-///////////////////////////////////////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 // senf::console::ParseCommandInfo
 
 prefix_ senf::console::ParseCommandInfo::ParseCommandInfo()
@@ -210,7 +210,7 @@ prefix_ void senf::console::ParseCommandInfo::addToken(Token const & token)
     tokens_.push_back(token);
 }
 
-///////////////////////////////////////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 // senf::console::ParseCommandInfo::ArgumentIterator
 
 prefix_ senf::console::ParseCommandInfo::ArgumentIterator::ArgumentIterator()
@@ -226,7 +226,7 @@ senf::console::ParseCommandInfo::ArgumentIterator::dereference()
     const
 {
     if (b_ == e_) setRange();
-    return b_->is(Token::ArgumentGroupOpen) 
+    return b_->is(Token::ArgumentGroupOpen)
         ? boost::make_iterator_range(boost::next(b_), boost::prior(e_))
         : boost::make_iterator_range(b_, e_);
 }
@@ -244,7 +244,7 @@ prefix_ void senf::console::ParseCommandInfo::ArgumentIterator::increment()
     b_ = e_;
 }
 
-///////////////////////////////////////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 
 prefix_ senf::console::CheckedArgumentIteratorWrapper::
 CheckedArgumentIteratorWrapper(ParseCommandInfo::ArgumentsRange const & range,
@@ -324,16 +324,16 @@ senf::console::CheckedArgumentIteratorWrapper::operator++(int)
     return i;
 }
 
-///////////////////////////////////////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 // senf::console::SingleCommandParser
 
 prefix_ senf::console::CommandParser::Impl & senf::console::CommandParser::impl()
 {
-    SENF_ASSERT(impl_);
+    SENF_ASSERT(impl_, "Ineral error: PIMPL pointer NULL ??");
     return *impl_;
 }
 
-///////////////////////////////cci.e///////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 #undef prefix_
 
 \f