public GetCommentsFromQtDocsPass(string docsPath, string module)
 {
     this.documentation = new Documentation(docsPath, module);
     this.Options.VisitFunctionReturnType = false;
     this.Options.VisitFunctionParameters = false;
     this.Options.VisitClassBases = false;
     this.Options.VisitTemplateArguments = false;
     this.Options.VisitClassFields = false;
 }
 public GetCommentsFromQtDocsPass(string docsPath, string module, Dictionary <Type, List <TypedefDecl> > typeDefsPerType)
 {
     this.documentation = new Documentation(docsPath, module, typeDefsPerType);
 }
 public GetCommentsFromQtDocsPass(string docsPath, string module, Dictionary<Type, List<TypedefDecl>> typeDefsPerType)
 {
     this.documentation = new Documentation(docsPath, module, typeDefsPerType);
 }