0
我使用的doxygen設置非常適用於類,結構和命名空間,但不會爲獨立功能生成任何文檔。Doxygen不生成獨立功能的文檔
例如,針對這些方法產生什麼:
#ifndef STRING_UTILS_H
#define STRING_UTILS_H 1
/// @file
/// @brief Trim whitespace from the start of the string
/// @param s - The string to left trim
/// @return the trimmed string
std::string ltrim(const std::string& s);
/// @brief Trim whitespace from the end of the string
/// @param s - The string to right trim
/// @return the trimmed string
std::string rtrim(const std::string& s);
/// @brief Trim whitespace from both sides of the string
/// @param s - The string to trim
/// @return the trimmed string
std::string trim(const std::string& s);
#endif
不Doxygen的產生的任何錯誤具有
/// @file
?它們是否會生成任何這些文件? –沒有錯誤,1個無關的警告,根本沒有任何文件。 – steveo225
您是否嘗試修復'@ file'命令。它需要一個參數。另外,配置Doxygen生成一個警告文件。看看是否還有其他問題。 –