> + typedefs.append(e) > + > + for n0 in f.xpath(".//*/memberdef[@kind='enum' and @prot='public']"): > + e = DoxyEnum.from_memberdef(n0) > + other.append(e) > + > +for n0 in root.xpath(".//compounddef[@kind='struct' and @prot='public']"): > + e = DoxyStruct.from_compounddef(n0) > + other.append(e) > + > +for f in c_files: > + for n0 in f.xpath(".//*/memberdef[@kind='function' and > @prot='public']"): > + e = DoxyFunction.from_memberdef(n0) > + other.append(e) > + > +outfile.write("#include <glib.h>\n")
should probably have a comment stating that it is generated (same for scioutfile) --- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/pull/890/files#r52653853