mirror of
https://github.com/tnodir/fort
synced 2024-11-17 18:58:05 +00:00
81ee760f31
And fix tests.
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
|