I was using Qt Creator and I decided I wanted to document a function I had written so I positioned my cursor above my function definition and typed /**<ENTER>
like so:
/**<ENTER>
void MyClass::myFunction(int myArg)
{
...
Qt Creator auto-expanded that comment:
/**
* @brief MyClass::myFunction
* @param myArg
*/
void MyClass::myFunction(int myArg)
{
...
What is this? Where is it documented?
Can I use this to generate my own Qt Assistant qch
help files or something?