mirror of
https://gitee.com/drabel/LibQQt.git
synced 2025-01-04 10:18:44 +08:00
18 lines
226 B
C++
18 lines
226 B
C++
#ifndef TEMPCLASS_H
|
|
#define TEMPCLASS_H
|
|
|
|
#include <QObject>
|
|
|
|
class TempClass : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit TempClass ( QObject* parent = nullptr ) ;
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
};
|
|
|
|
#endif // TEMPCLASS_H
|