mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-05 18:20:33 -08:00
14 lines
199 B
C++
14 lines
199 B
C++
#pragma once
|
|
|
|
#include <QObject>
|
|
#include <QVariant>
|
|
|
|
extern "C" { QObject* ini(); }
|
|
|
|
class QT : public QObject {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
Q_INVOKABLE QVariant keepScreenOn(const QVariant& = true);
|
|
};
|
|
|