blob: 8a96d8ddef4cc4fa67384bde86aa59a6ba13f71c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial
#ifndef CTF_H
#define CTF_H
struct Provider;
class QFile;
void writeCtf(QFile &device, const Provider &p);
#endif // CTF_H
|