1
0
mirror of https://github.com/QRouland/UTPass.git synced 2025-06-30 17:22:29 +00:00
Files
UTPass/plugins/Pass/pass.h
2019-03-22 00:11:36 +01:00

19 lines
213 B
C++

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