16 lines
186 B
C++
16 lines
186 B
C++
#ifndef CFGDEBUG_HPP
|
|
#define CFGDEBUG_HPP
|
|
|
|
#include <QObject>
|
|
|
|
/* clang-format off */
|
|
class CfgDebug : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
CfgDebug();
|
|
};
|
|
/* clang-format on */
|
|
|
|
#endif
|