mirror of
https://github.com/QRouland/UTPass.git
synced 2025-01-10 17:38:47 +00:00
19 lines
213 B
C++
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
|