2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2022 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2008-12-02 14:09:21 +01:00
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2022-05-31 11:16:44 +02:00
|
|
|
#include <QtCore/private/qabstractfileengine_p.h>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2022-05-31 11:16:44 +02:00
|
|
|
namespace Utils {
|
2010-01-28 15:47:45 +01:00
|
|
|
|
2022-05-31 11:16:44 +02:00
|
|
|
namespace Internal {
|
2021-06-08 12:54:22 +02:00
|
|
|
|
2022-05-31 11:16:44 +02:00
|
|
|
class FSEngineHandler : public QAbstractFileEngineHandler
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
QAbstractFileEngine *create(const QString &fileName) const override;
|
|
|
|
|
};
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2022-05-31 11:16:44 +02:00
|
|
|
} // namespace Internal
|
2010-01-28 15:47:45 +01:00
|
|
|
|
2022-05-31 11:16:44 +02:00
|
|
|
} // namespace Utils
|