1
0
mirror of https://github.com/QRouland/UTPass.git synced 2025-07-04 03:02:28 +00:00
Files
UTPass/plugins/Pass/pass.h
2019-03-21 00:04:05 +01:00

18 lines
200 B
C++

#ifndef PASS_H
#define PASS_H
#include <QObject>
class Pass : public QObject {
Q_OBJECT
QString gpgHome;
public:
Pass();
~Pass() override = default;
Q_INVOKABLE void speak();
};
#endif