summaryrefslogtreecommitdiffstats
path: root/src/tools/tracegen/qtheaders.cpp
blob: a65ece5c5b7bd5aae3439357a4f9a25987a5a2fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (C) 2017 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Rafael Roquetto <rafael.roquetto@kdab.com>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only

#include "qtheaders.h"

const char *qtHeaders()
{
    static const char headers[] = ""
              "#include <QString>\n"
              "#include <QByteArray>\n"
              "#include <QUrl>\n"
              "#include <QRect>\n";

    return headers;
}