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-06-09 01:38:46 +08:00

22 lines
323 B
C++

#ifndef TEMPCLASS_H
#define TEMPCLASS_H
#include <QObject>
#include <qqtcore.h>
#include <qqt-local.h>
class QQTSHARED_EXPORT TemplateClass : public QObject
{
Q_OBJECT
public:
explicit TemplateClass ( QObject* parent = nullptr ) : QObject ( parent ) {
}
signals:
public slots:
};
#endif // TEMPCLASS_H