mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 05:57:36 +03:00
Support @class, fix execution failure
This commit is contained in:
parent
ca6b46db84
commit
f2c2f08585
1 changed files with 4 additions and 2 deletions
|
@ -1,3 +1,5 @@
|
||||||
|
#!/usr/bin/env python
|
||||||
|
#
|
||||||
# aria2 - The high speed download utility
|
# aria2 - The high speed download utility
|
||||||
#
|
#
|
||||||
# Copyright (C) 2013 Tatsuhiro Tsujikawa
|
# Copyright (C) 2013 Tatsuhiro Tsujikawa
|
||||||
|
@ -107,7 +109,7 @@ def make_api_ref(infiles):
|
||||||
functions.append(process_function('function', infile))
|
functions.append(process_function('function', infile))
|
||||||
elif doctype == '@typedef':
|
elif doctype == '@typedef':
|
||||||
types.append(process_typedef(infile))
|
types.append(process_typedef(infile))
|
||||||
elif doctype in ['@struct', '@union']:
|
elif doctype in ['@class', '@struct', '@union']:
|
||||||
types.append(process_struct(infile))
|
types.append(process_struct(infile))
|
||||||
elif doctype == '@enum':
|
elif doctype == '@enum':
|
||||||
enums.append(process_enum(infile))
|
enums.append(process_enum(infile))
|
||||||
|
@ -115,7 +117,7 @@ def make_api_ref(infiles):
|
||||||
macros.append(process_macro(infile))
|
macros.append(process_macro(infile))
|
||||||
alldocs = [('Macros', macros),
|
alldocs = [('Macros', macros),
|
||||||
('Enums', enums),
|
('Enums', enums),
|
||||||
('Types (structs, unions and typedefs)', types),
|
('Types (classes, structs, unions and typedefs)', types),
|
||||||
('Functions', functions)]
|
('Functions', functions)]
|
||||||
for title, docs in alldocs:
|
for title, docs in alldocs:
|
||||||
if not docs:
|
if not docs:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue