pygccxml icon indicating copy to clipboard operation
pygccxml copied to clipboard

it will lost some class in hpp file

Open coderguang opened this issue 3 years ago • 1 comments

i had a A.hpp,include class A。 it can generator right at first。 but when i new a class B inherit A in B.hpp。 it will lost A expose。

coderguang avatar May 07 '22 05:05 coderguang

I had solve this. next is my code

builder = module_builder.module_builder_t(
        header_file,
        xml_generator_path=generator_path,
        xml_generator_config=xml_generator_config,
        compilation_mode=const.builder_compilation_mode,
    )

my header_file is a list of file by Relative path。 it cant pass check by pygccxml/parser/source_reader.py function:__parse_xml_file It's exclude but no any warning。

coderguang avatar May 09 '22 16:05 coderguang