"); } void endParagraph() { fprintf(fd,"
\n"); } void text(const QString & t) { fprintf(fd, "%s", S(t)); } void sectionLink(const QString & s) { fprintf(fd, "%s", S(s), S(s)); } void bold(const QString & t) { fprintf(fd, "%s", S(t)); } void italic(const QString & t) { fprintf(fd, "%s", S(t)); } void link(const QString & t) { fprintf(fd, "%s", S(t),S(t)); } void verbatim(const QString & t) { fprintf(fd, "%s", S(t)); } void beginList(bool o) { ordered = o; fprintf(fd, ordered?"
"); if (h->shortSwitch) fprintf(fd, "-%c,",h->shortSwitch); fprintf(fd, " | --%s%s | ",S(h->longName), (h->qthack?"*":"")); foreach (const QString & arg, h->argn) fprintf(fd, "<%s> ",S(arg)); fprintf(fd, " | %s |
Items marked * are only available using patched QT.
"); } }; /*! Create a Html outputter \param fd A file description to output to */ Outputter * Outputter::html(FILE * fd) { return new HtmlOutputter(fd); }