无法使用python运行doxygen

时间:2012-01-12 05:16:03

标签: python doxygen

我正在尝试通过运行以下Python文件来学习doxygen。 使用c ++文件的类似尝试是成功的,但是我无法在生成的main.html文件中生成任何内容。它只显示“主页”和“文件列表”作为html页面中的两个链接。

我做错了什么?

""" sample docstring"""
## @package stuff
#  @author me
#  Description
#
#  Some more description

## A class that does whatever
class whatever:
    ## A method that does stuff
    def dostuff(self):
        print 'here'

def show():
    print 'showing'

show()

2 个答案:

答案 0 :(得分:2)

1.4.4版(http://www.doxygen.nl/changelog_1.4.html)中添加了对Python的Doxygen支持。您需要更新到更新版本才能从Python代码生成doxygen文档。

答案 1 :(得分:0)

你应该试试这个:MyClass.E = variable就是说,如果我没有弄错你的意思。