對於我的doxygen(doxypy)文檔,我收到錯誤消息warning: Member constant1 (variable) of namespace <file_name> is not documented.
。我已經記錄了該文件以及所有功能和類。但我也有一些額外的常量在這個文件中,我不知道如何記錄和我得到的錯誤信息。該文件是這樣的:DoxyPy - 沒有記錄名稱空間的成員(變量)
"""\file
\brief <this is what the file contains>
\author <author>
"""
import numpy as np
constant1 = 24
constant2 = 48
def someFunction():
""" Doxygen documentation of someFunction() """
<body>
在這個例子中,我該如何記錄constant1
和constant2
,從而使錯誤訊息消失?
請查看doxygen手冊中的「Python中的註釋塊」段落。用「##」等文件記錄 – albert