You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pygccxml is a specialized XML reader that reads the output from CastXML or GCCXML. It provides a simple framework to navigate C++ declarations, using Python classes.
17
+
pygccxml is a specialized XML reader that reads the output from CastXML.
18
+
It provides a simple framework to navigate C++ declarations, using Python classes.
18
19
19
-
Install
20
-
-------
20
+
Using pygccxml you can:
21
+
22
+
* Parse C++ source code
23
+
* Create a code generator
24
+
* Generate UML diagrams
25
+
* Build code analyzers
26
+
* ...
27
+
28
+
Installation
29
+
------------
21
30
22
31
Install instructions can be found `here <http://pygccxml.readthedocs.io/en/master/install.html>`_.
23
32
33
+
Compatibility
34
+
-------------
35
+
36
+
pygccxml is compatible with Python 2.7, 3.3, 3.4, 3.5, pypy and pypy3.
37
+
24
38
Documentation and examples
25
39
--------------------------
26
40
27
41
The documentation can be found `here <http://pygccxml.readthedocs.io>`_, examples can be found `here <http://pygccxml.readthedocs.io/en/master/examples.html>`_.
28
42
43
+
If you want to know more about the API provided by pygccxml, read the
44
+
`query interface <http://pygccxml.readthedocs.io/en/develop/query_interface.html>`_ document or the
0 commit comments