Search found 1 match

by blobfish
Sun May 23 2021 9:12 pm
Forum: Issues
Topic: doxypress missing source code comments with using namespace
Replies: 1
Views: 7812

doxypress missing source code comments with using namespace

this does NOT work: 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: /*! @brief Adds shape and all sub-shapes that don't a...