mirror of
https://github.com/QRouland/UTPass.git
synced 2025-01-10 09:28:47 +00:00
18 lines
241 B
C++
18 lines
241 B
C++
#ifndef PASS_H
|
|
#define PASS_H
|
|
|
|
#include <QObject>
|
|
|
|
class Pass: public QObject {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
Pass();
|
|
~Pass() override = default;
|
|
|
|
Q_INVOKABLE void cmd_show(QString path) ;
|
|
Q_INVOKABLE void cmd_version() ;
|
|
};
|
|
|
|
#endif
|