File tree Expand file tree Collapse file tree 7 files changed +7
-7
lines changed Expand file tree Collapse file tree 7 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 18
18
from pygccxml import utils # nopep8
19
19
20
20
# Find out the xml generator (gccxml or castxml)
21
- generator_path , generator_name = utils .find_cpp_parser ()
21
+ generator_path , generator_name = utils .find_xml_generator ()
22
22
23
23
# Configure the xml generator
24
24
config = parser .xml_generator_configuration_t (
Original file line number Diff line number Diff line change 7
7
from pygccxml import parser
8
8
9
9
# Find out the c++ parser
10
- generator_path , generator_name = utils .find_cpp_parser ()
10
+ generator_path , generator_name = utils .find_xml_generator ()
11
11
12
12
# Configure the xml generator
13
13
xml_generator_config = parser .xml_generator_configuration_t (
Original file line number Diff line number Diff line change 7
7
from pygccxml import parser
8
8
9
9
# Find the location of the xml generator (castxml or gccxml)
10
- generator_path , generator_name = utils .find_cpp_parser ()
10
+ generator_path , generator_name = utils .find_xml_generator ()
11
11
12
12
# Configure the xml generator
13
13
xml_generator_config = parser .xml_generator_configuration_t (
Original file line number Diff line number Diff line change 7
7
from pygccxml import parser
8
8
9
9
# Find out the c++ parser
10
- generator_path , generator_name = utils .find_cpp_parser ()
10
+ generator_path , generator_name = utils .find_xml_generator ()
11
11
12
12
# Configure the xml generator
13
13
xml_generator_config = parser .xml_generator_configuration_t (
Original file line number Diff line number Diff line change 15
15
from .utils import create_temp_file_name
16
16
from .utils import remove_file_no_raise
17
17
from .utils import normalize_path
18
- from .utils import find_cpp_parser
18
+ from .utils import find_xml_generator
19
19
from .utils import get_tr1
20
20
21
21
# Version of xml generator which was used.
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ def is_str(s):
28
28
return isinstance (s , basestring )
29
29
30
30
31
- def find_cpp_parser (name = None ):
31
+ def find_xml_generator (name = None ):
32
32
"""
33
33
Try to find a c++ parser. Returns path and name.
34
34
Original file line number Diff line number Diff line change 27
27
pygccxml .utils .loggers .set_level (logging .INFO )
28
28
29
29
# Find out the c++ parser (gccxml or castxml)
30
- generator_path , generator_name = pygccxml .utils .find_cpp_parser ()
30
+ generator_path , generator_name = pygccxml .utils .find_xml_generator ()
31
31
32
32
pygccxml .declarations .class_t .USE_DEMANGLED_AS_NAME = True
33
33
You can’t perform that action at this time.
0 commit comments