1 | // Copyright (C) 2016 The Qt Company Ltd. |
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 |
3 | |
4 | #ifndef QDOCGENERATOR_H |
5 | #define QDOCGENERATOR_H |
6 | |
7 | #include "logging.h" |
8 | #include "package.h" |
9 | |
10 | #include <QtCore/qtextstream.h> |
11 | #include <QtCore/qlist.h> |
12 | |
13 | namespace QDocGenerator { |
14 | |
15 | void generate(QTextStream &out, const QList<Package> &packages, const QString &baseDirectory, |
16 | LogLevel logLevel); |
17 | |
18 | } // namespace QDocGenerator |
19 | |
20 | #endif // QDOCGENERATOR_H |
21 | |