1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00
LibQQt/test/tmpproj/tempclass.h
2018-02-11 15:12:05 +08:00

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