yubioath-flutter/screenshot.h
2017-02-13 13:03:58 +01:00

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