blob: dbe7c6b40b9576b25c532e6df62e647f02f8b04d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// 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
|