Page 1 of 1

doxypress missing source code comments with using namespace

Posted: Sun May 23 2021 9:12 pm
by blobfish
this does NOT work:

Code: Select all

using namespace srs;
/*! @brief Adds shape and all sub-shapes that don't already exist.
 * 
 * @parameter sIn is the shape to add.
  */
void Shape::addShapes(const TopoDS_Shape &sIn)
{
  stow->ensureShapes(sIn);
}


This does work:

Code: Select all

/*! @brief Adds shape and all sub-shapes that don't already exist.
 * 
 * @parameter sIn is the shape to add.
  */
void srs::Shape::addShapes(const TopoDS_Shape &sIn)
{
  stow->ensureShapes(sIn);
}

Re: doxypress missing source code comments with using namespace

Posted: Tue May 25 2021 8:19 pm
by barbara
Thanks for your question. We will need additional information.

1 What do you expect to see?

2 What result did you get?

3 Do you have "clang parsing" turned on?

4 What version of DoxyPress are you using?

5 What OS are you using?