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