Qt 6.11 is out! See what's new in the release
blog
QDoc and STL
-
Hello!
I ran into the following problem: when trying to generate qdoc documentation for a function, a parameter that is of type std::vector, Qdoc turns it into an int when generating.
Is there any way to document this function correctly with this type, and not with a similar QVector?Here is a code sample:
* \fn void ClassA::foo(std::vector<int> num) * * \brief Example with \a num parameter.