mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-22 16:32:01 +03:00
17 lines
243 B
C++
17 lines
243 B
C++
#ifndef SCREENSHOT_H
|
|
#define SCREENSHOT_H
|
|
#include <QObject>
|
|
|
|
class ScreenShot: public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit ScreenShot () : QObject() {}
|
|
|
|
Q_INVOKABLE int capture(){
|
|
return 1;
|
|
}
|
|
};
|
|
|
|
#endif // SCREENSHOT_H
|