UTPassMirror/plugins/FileSystem/filesystem.h
2019-03-13 19:38:12 +01:00

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