blob: 3cd90a4f3bd8f09cfc3437c93380ab342ce4617d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef CFGDEBUG_HPP
#define CFGDEBUG_HPP
#include <QObject>
/* clang-format off */
class CfgDebug : public QObject
{
Q_OBJECT
public:
CfgDebug();
};
/* clang-format on */
#endif
|