Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / senf / Utils / Console / OverloadedCommand.hh
index 9ba7252..fb3c24e 100644 (file)
@@ -34,7 +34,7 @@
 #include <boost/optional.hpp>
 
 //#include "OverloadedCommand.mpp"
-///////////////////////////////hh.p////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 
 namespace senf {
 namespace console {
@@ -62,13 +62,13 @@ namespace console {
         : public senf::intrusive_refcount
     {
     public:
-        ///////////////////////////////////////////////////////////////////////////
+        //-////////////////////////////////////////////////////////////////////////
         // Types
 
         typedef boost::intrusive_ptr<CommandOverload> ptr;
         typedef boost::intrusive_ptr<CommandOverload const> cptr;
 
-        ///////////////////////////////////////////////////////////////////////////
+        //-////////////////////////////////////////////////////////////////////////
 
         virtual ~CommandOverload();
 
@@ -165,7 +165,7 @@ namespace console {
         typedef std::vector<CommandOverload::ptr> Overloads;
 
     public:
-        ///////////////////////////////////////////////////////////////////////////
+        //-////////////////////////////////////////////////////////////////////////
         // Types
 
         typedef boost::shared_ptr<OverloadedCommandNode> ptr;
@@ -177,14 +177,14 @@ namespace console {
 
         typedef boost::iterator_range<Overloads::const_iterator> OverloadsRange;
 
-        ///////////////////////////////////////////////////////////////////////////
+        //-////////////////////////////////////////////////////////////////////////
         ///\name Structors and default members
-        ///@{
+        //\{
 
         static ptr create();
 
-        ///@}
-        ///////////////////////////////////////////////////////////////////////////
+        //\}
+        //-////////////////////////////////////////////////////////////////////////
 
         template <class Command>
         Command & add(boost::intrusive_ptr<Command> overload); ///< Add an additional overload
@@ -230,22 +230,22 @@ namespace console {
         : public CommandOverload
     {
     public:
-        ///////////////////////////////////////////////////////////////////////////
+        //-////////////////////////////////////////////////////////////////////////
         // Types
 
         typedef boost::intrusive_ptr<SimpleCommandOverload> ptr;
         typedef boost::function<void (std::ostream &, ParseCommandInfo const &)> Function;
 
-        ///////////////////////////////////////////////////////////////////////////
+        //-////////////////////////////////////////////////////////////////////////
         ///\name Structors and default members
-        ///@{
+        //\{
 
         static SimpleCommandOverload::ptr create(Function fn);
                                         ///< Create new SimpleCommandOverload
                                         /**< \param[in] fn callback to call */
 
-        ///@}
-        ///////////////////////////////////////////////////////////////////////////
+        //\}
+        //-////////////////////////////////////////////////////////////////////////
 
         SimpleCommandOverload & doc(std::string const & doc);
                                         ///< Assign overload specific documentation
@@ -286,7 +286,7 @@ namespace console {
 
 }}
 
-///////////////////////////////hh.e////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 #include "OverloadedCommand.cci"
 //#include "OverloadedCommand.ct"
 #include "OverloadedCommand.cti"