Initial commit
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
#include "qkeysender.h"
|
||||
|
||||
QKeySender::QKeySender(QObject *parent)
|
||||
: QObject{parent}
|
||||
{}
|
||||
@@ -0,0 +1,15 @@
|
||||
#ifndef QKEYSENDER_H
|
||||
#define QKEYSENDER_H
|
||||
|
||||
#include <QObject>
|
||||
|
||||
class QKeySender : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit QKeySender(QObject *parent = nullptr);
|
||||
|
||||
signals:
|
||||
};
|
||||
|
||||
#endif // QKEYSENDER_H
|
||||
Reference in New Issue
Block a user