gpt4 book ai didi

python - Doxygen python 链接到函数

转载 作者:行者123 更新时间:2023-12-04 16:58:46 25 4
gpt4 key购买 nike

我正在使用 Doxygen 来记录我的 python 模块,我试图让它链接到文本中的函数。我可以让它链接到函数的命名空间,但不能链接到函数本身。

例如。 ModuleName::Namespace有效但 ModuleName::Namespace::getSomething()没有。

如何让这些链接生效?

最佳答案

Doxygen 自动将函数包装在每个模块的命名空间中。您必须记录此模块以使文档可见和可链接(或使用 EXTRACT_ALL = YES)。

这是一个例子 func.py

## @package func
# Module docs

## A function
#
# More documentation.
def foo():
print "Hello World!"

## Another function.
#
# This function simply calls foo()
def bar():
foo()

还有另一个功能 another.py :
## @package another
#
# Another module

import func

## This function calls func.foo()
def another():
foo()

您应该看到 foo() 和 func.foo() 将自动链接。

关于python - Doxygen python 链接到函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8375631/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com