CfgDebug.hpp 186 B

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