此操作将删除页面 "Documenting project"
,请三思而后行。
Project uses doxygen for documentation generation.
You can generate documentation:
mkdir build
cd build
cmake ..
cmake --build . --target doc
Please use:
//!
or /*! */
for comment blocks\<directive>
for special commandsThere are two groups/modules in doxygen QtProtobuf and QtGrpc assigned accordingly.
Please use following style to add couple classes to group:
/*!
* \addtogroup QtProtobuf
* \{
*/
/*!
* \brief The Some class1 description
*/
class Some1 {
...
};
/*!
* \brief The Some class2 description
*/
class Some2 {
...
};
...
/*! \} */
And simplified for single class:
/*!
* \ingroup QtGrpc
* \brief The Some class description
*/
class Some {
...
};
TODO: qdoc documenting upcomming
此操作将删除页面 "Documenting project"
,请三思而后行。