UTPassMirror/plugins/Pass/pass.h

18 lines
200 B
C
Raw Normal View History

2019-03-13 18:38:12 +00:00
#ifndef PASS_H
#define PASS_H
#include <QObject>
2019-03-20 23:04:05 +00:00
class Pass : public QObject {
Q_OBJECT
QString gpgHome;
2019-03-13 18:38:12 +00:00
2019-03-20 23:04:05 +00:00
public:
Pass();
~Pass() override = default;
2019-03-13 18:38:12 +00:00
2019-03-20 23:04:05 +00:00
Q_INVOKABLE void speak();
2019-03-13 18:38:12 +00:00
};
#endif