doxypress missing source code comments with using namespace

Report any problems using DoxyPress or DoxyPressApp
Post Reply
blobfish
Posts: 1
Joined: Sun May 23 2021 9:06 pm

doxypress missing source code comments with using namespace

Post 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);
}
barbara
Posts: 443
Joined: Sat Apr 04 2015 2:32 am
Contact:

Re: doxypress missing source code comments with using namespace

Post 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?
Post Reply