lqml/examples/wear-os-gps/cpp/qt.h
2024-05-23 10:28:06 +02:00

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);
};