File indexing completed on 2024-11-17 04:55:14

0001 /*
0002     SPDX-FileCopyrightText: 2022 Aditya Mehra <aix.m@outlook.com>
0003     SPDX-License-Identifier: LGPL-2.0-or-later
0004 */
0005 
0006 #ifndef VIRTUALKEYPRESS_H
0007 #define VIRTUALKEYPRESS_H
0008 
0009 #include <QObject>
0010 
0011 class VirtualKeyPress : public QObject
0012 {
0013     Q_OBJECT
0014 
0015 public:
0016     VirtualKeyPress();
0017     ~VirtualKeyPress();
0018 
0019 public Q_SLOTS:
0020     void emitKey(QString stringkey);
0021 
0022 };
0023 
0024 #endif