@this tag
This tag is a shortcut used to start a sentence describing the symbol by writing the qualified symbol type. @This and @this are available which produce capitalized and lower case text respectively.
Syntax [link]
@this <end of sentence>.
Example [link]
These declarations:
class Object
{
public:
/** @This reads object content. */
template <typename T>
void read();
/** @This writes object content. */
virtual void write();
generate the following member details:
template <> void read() [link]
This template function is declared in doc/examples.h source file, line 165.
This template function reads object content.
virtual void write() [link]
This virtual function is declared in doc/examples.h source file, line 168.
This virtual function writes object content.