mirror of
https://github.com/QRouland/UTPass.git
synced 2025-01-10 17:38:47 +00:00
17 lines
295 B
C++
17 lines
295 B
C++
#ifndef PASSPLUGIN_H
|
|
#define PASSPLUGIN_H
|
|
|
|
#include <QQmlExtensionPlugin>
|
|
|
|
class FileSystemPlugin : public QQmlExtensionPlugin
|
|
{
|
|
Q_OBJECT
|
|
Q_PLUGIN_METADATA(IID
|
|
"org.qt-project.Qt.QQmlExtensionInterface")
|
|
|
|
public:
|
|
void registerTypes(const char *uri);
|
|
};
|
|
|
|
#endif
|