UTPassMirror/plugins/FileSystem/filesystem.h

17 lines
200 B
C
Raw Normal View History

2019-03-13 18:38:12 +00:00
#ifndef PASS_H
#define PASS_H
#include <QObject>
class FileSystem: public QObject {
Q_OBJECT
public:
FileSystem();
~FileSystem() = default;
Q_INVOKABLE void list_dir();
};
#endif