forked from qt-creator/qt-creator
Change-Id: I45666aa8aab1caa776d2f9f23455dc6a92384018 Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io>
21 lines
405 B
C++
21 lines
405 B
C++
// Copyright (c) 2017 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#pragma once
|
|
|
|
#include <utils/aspects.h>
|
|
|
|
namespace Haskell::Internal {
|
|
|
|
class HaskellSettings final : public Utils::AspectContainer
|
|
{
|
|
public:
|
|
HaskellSettings();
|
|
|
|
Utils::FilePathAspect stackPath{this};
|
|
};
|
|
|
|
HaskellSettings &settings();
|
|
|
|
} // Haskell::Internal
|