9int main(
int argc,
char ** argv)
11 QGuiApplication app(argc, argv);
15 QFileSystemModel model;
17 model.setRootPath(QDir::currentPath());
19 qmlRegisterSingletonInstance(
"FileSystemModule", 1, 0,
"FileSystemModel", &model);
20 view.setSource(QUrl::fromLocalFile(
"view.qml"));