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