Skip to content

Commit 2d76a9e

Browse files
author
roman_yakovenko
committed
sphinx
1 parent c36fec1 commit 2d76a9e

File tree

8 files changed

+116
-84
lines changed

8 files changed

+116
-84
lines changed

docs/apidocs/binary_parsers.rest

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,15 @@
22
pygccxml.binary_parsers API
33
===========================
44

5-
parsers
6-
-------
5+
binary_parsers package
6+
----------------------
7+
8+
.. automodule:: pygccxml.binary_parsers
9+
:members:
10+
:show-inheritance:
11+
12+
parsers module
13+
--------------
714

815
.. automodule:: pygccxml.binary_parsers.parsers
916
:members:

docs/apidocs/declarations.rest

Lines changed: 58 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -2,176 +2,184 @@
22
pygccxml.declarations package
33
=============================
44

5-
algorithm
6-
---------
5+
declarations package
6+
--------------------
77

8-
.. automodule:: pygccxml.declarations.algorithm
8+
.. automodule:: pygccxml.declarations
99
:members:
1010
:show-inheritance:
1111

12-
algorithms_cache
12+
13+
algorithm module
1314
----------------
1415

16+
.. automodule:: pygccxml.declarations.algorithm
17+
:members:
18+
:show-inheritance:
19+
20+
algorithms_cache module
21+
-------------------------
22+
1523
.. automodule:: pygccxml.declarations.algorithms_cache
1624
:members:
1725
:show-inheritance:
1826

19-
calldef
20-
-------
27+
calldef module
28+
----------------
2129

2230
.. automodule:: pygccxml.declarations.calldef
2331
:members:
2432
:show-inheritance:
2533

26-
call_invocation
27-
---------------
34+
call_invocation module
35+
------------------------
2836

2937
.. automodule:: pygccxml.declarations.call_invocation
3038
:members:
3139
:show-inheritance:
3240

33-
class_declaration
34-
-----------------
41+
class_declaration module
42+
--------------------------
3543

3644
.. automodule:: pygccxml.declarations.class_declaration
3745
:members:
3846
:show-inheritance:
3947

40-
compilers
41-
---------
48+
compilers module
49+
------------------
4250

4351
.. automodule:: pygccxml.declarations.compilers
4452
:members:
4553
:show-inheritance:
4654

47-
container_traits
48-
----------------
55+
container_traits module
56+
-------------------------
4957

5058
.. automodule:: pygccxml.declarations.container_traits
5159
:members:
5260
:show-inheritance:
5361

54-
cpptypes
55-
--------
62+
cpptypes module
63+
-----------------
5664

5765
.. automodule:: pygccxml.declarations.cpptypes
5866
:members:
5967
:show-inheritance:
6068

61-
declaration
62-
-----------
69+
declaration module
70+
--------------------
6371

6472
.. automodule:: pygccxml.declarations.declaration
6573
:members:
6674
:show-inheritance:
6775

68-
decl_factory
69-
------------
76+
decl_factory module
77+
---------------------
7078

7179
.. automodule:: pygccxml.declarations.decl_factory
7280
:members:
7381
:show-inheritance:
7482

75-
decl_printer
76-
------------
83+
decl_printer module
84+
---------------------
7785

7886
.. automodule:: pygccxml.declarations.decl_printer
7987
:members:
8088
:show-inheritance:
8189

82-
decl_visitor
83-
------------
90+
decl_visitor module
91+
---------------------
8492

8593
.. automodule:: pygccxml.declarations.decl_visitor
8694
:members:
8795
:show-inheritance:
8896

89-
dependencies
90-
------------
97+
dependencies module
98+
---------------------
9199

92100
.. automodule:: pygccxml.declarations.dependencies
93101
:members:
94102
:show-inheritance:
95103

96-
enumeration
97-
-----------
104+
enumeration module
105+
--------------------
98106

99107
.. automodule:: pygccxml.declarations.enumeration
100108
:members:
101109
:show-inheritance:
102110

103-
function_traits
104-
---------------
111+
function_traits module
112+
------------------------
105113

106114
.. automodule:: pygccxml.declarations.function_traits
107115
:members:
108116
:show-inheritance:
109117

110-
matcher
111-
-------
118+
matcher module
119+
----------------
112120

113121
.. automodule:: pygccxml.declarations.matcher
114122
:members:
115123
:show-inheritance:
116124

117-
matchers
118-
--------
125+
matchers module
126+
-----------------
119127

120128
.. automodule:: pygccxml.declarations.matchers
121129
:members:
122130
:show-inheritance:
123131

124-
mdecl_wrapper
125-
-------------
132+
mdecl_wrapper module
133+
----------------------
126134

127135
.. automodule:: pygccxml.declarations.mdecl_wrapper
128136
:members:
129137
:show-inheritance:
130138

131-
namespace
132-
---------
139+
namespace module
140+
------------------
133141

134142
.. automodule:: pygccxml.declarations.namespace
135143
:members:
136144
:show-inheritance:
137145

138-
scopedef
139-
--------
146+
scopedef module
147+
-----------------
140148

141149
.. automodule:: pygccxml.declarations.scopedef
142150
:members:
143151
:show-inheritance:
144152

145-
templates
146-
---------
153+
templates module
154+
------------------
147155

148156
.. automodule:: pygccxml.declarations.templates
149157
:members:
150158
:show-inheritance:
151159

152-
typedef
153-
-------
160+
typedef module
161+
----------------
154162

155163
.. automodule:: pygccxml.declarations.typedef
156164
:members:
157165
:show-inheritance:
158166

159-
type_traits
160-
-----------
167+
type_traits module
168+
--------------------
161169

162170
.. automodule:: pygccxml.declarations.type_traits
163171
:members:
164172
:show-inheritance:
165173

166-
type_visitor
167-
------------
174+
type_visitor module
175+
---------------------
168176

169177
.. automodule:: pygccxml.declarations.type_visitor
170178
:members:
171179
:show-inheritance:
172180

173-
variable
174-
--------
181+
variable module
182+
---------------
175183

176184
.. automodule:: pygccxml.declarations.variable
177185
:members:

docs/apidocs/parser.rest

Lines changed: 19 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,44 +2,51 @@
22
pygccxml.parser package
33
=======================
44

5-
config
6-
------
5+
parser package
6+
--------------
7+
8+
.. automodule:: pygccxml.parser
9+
:members:
10+
:show-inheritance:
11+
12+
config module
13+
---------------
714

815
.. automodule:: pygccxml.parser.config
916
:members:
1017
:show-inheritance:
1118

12-
declarations_cache
13-
------------------
19+
declarations_cache module
20+
----------------------------
1421

1522
.. automodule:: pygccxml.parser.declarations_cache
1623
:members:
1724
:show-inheritance:
1825

19-
directory_cache
20-
---------------
26+
directory_cache module
27+
------------------------
2128

2229
.. automodule:: pygccxml.parser.directory_cache
2330
:members:
2431
:show-inheritance:
2532

26-
patcher
27-
-------
33+
patcher module
34+
----------------
2835

2936
.. automodule:: pygccxml.parser.patcher
3037
:members:
3138
:show-inheritance:
3239

33-
project_reader
34-
--------------
40+
project_reader module
41+
---------------------
3542

3643
.. automodule:: pygccxml.parser.project_reader
3744
:members:
3845
:show-inheritance:
3946

4047

41-
source_reader
42-
-------------
48+
source_reader module
49+
----------------------
4350

4451
.. automodule:: pygccxml.parser.source_reader
4552
:members:

docs/apidocs/utils.rest

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,16 @@
22
pygccxml.utils package
33
======================
44

5+
utils package
6+
-------------
57

6-
fs_utils
7-
--------
8+
.. automodule:: pygccxml.utils
9+
:members:
10+
:show-inheritance:
11+
12+
13+
fs_utils module
14+
---------------
815

916
.. automodule:: pygccxml.utils.fs_utils
1017
:members:

0 commit comments

Comments
 (0)