mirror of
https://github.com/QRouland/UTPass.git
synced 2024-11-12 18:52:39 +00:00
17 lines
200 B
C
17 lines
200 B
C
|
#ifndef PASS_H
|
||
|
#define PASS_H
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
class FileSystem: public QObject {
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
FileSystem();
|
||
|
~FileSystem() = default;
|
||
|
|
||
|
Q_INVOKABLE void list_dir();
|
||
|
};
|
||
|
|
||
|
#endif
|