mirror of
https://github.com/tnodir/fort
synced 2024-11-17 21:58:36 +00:00
18 lines
274 B
C
18 lines
274 B
C
|
#ifndef GUIUTIL_H
|
||
|
#define GUIUTIL_H
|
||
|
|
||
|
#include <QObject>
|
||
|
#include <QVariant>
|
||
|
|
||
|
class GuiUtil : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit GuiUtil(QObject *parent = nullptr);
|
||
|
|
||
|
Q_INVOKABLE static void setClipboardData(const QVariant &data);
|
||
|
};
|
||
|
|
||
|
#endif // GUIUTIL_H
|