summaryrefslogtreecommitdiffstats
path: root/src/tools/tracegen/helpers.h
blob: 4c30eaff0d6bcf50cd15ae78d73ad5d46d6dc010 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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

#ifndef HELPERS_H
#define HELPERS_H

#include "provider.h"

#include <qlist.h>
#include <qstring.h>

enum ParamType {
    LTTNG,
    ETW
};

QString includeGuard(const QString &filename);
QString formatFunctionSignature(const QList<Tracepoint::Argument> &args);
QString formatParameterList(const QList<Tracepoint::Argument> &args, ParamType type);

#endif // HELPERS_H