forked from qt-creator/qt-creator
Keeps more context to make it host-independent later. Change-Id: I0f8ad3e8794daa6324662847203200ae378d34b4 Reviewed-by: Christian Stenger <christian.stenger@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
17 lines
405 B
C++
17 lines
405 B
C++
// 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
|
|
|
|
#pragma once
|
|
|
|
#include <QtCore/private/qabstractfileengine_p.h>
|
|
|
|
namespace Utils::Internal {
|
|
|
|
class FSEngineHandler : public QAbstractFileEngineHandler
|
|
{
|
|
public:
|
|
QAbstractFileEngine *create(const QString &fileName) const override;
|
|
};
|
|
|
|
} // Utils::Internal
|