Files
qt-creator/src/libs/utils/fsengine/fsenginehandler.h

17 lines
405 B
C
Raw Normal View History

// 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
#pragma once
2008-12-02 12:01:29 +01:00
#include <QtCore/private/qabstractfileengine_p.h>
2008-12-02 12:01:29 +01:00
namespace Utils::Internal {
class FSEngineHandler : public QAbstractFileEngineHandler
{
public:
QAbstractFileEngine *create(const QString &fileName) const override;
};
2008-12-02 12:01:29 +01:00
} // Utils::Internal