summaryrefslogtreecommitdiff
path: root/src/plugins/haskell/haskellsettings.h
blob: c697a154ee4ddaca6759cead4110674b190891ef (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 <coreplugin/dialogs/ioptionspage.h>

namespace Haskell::Internal {

class HaskellSettings : public Core::PagedSettings
{
public:
    HaskellSettings();

    Utils::StringAspect stackPath;
};

HaskellSettings &settings();

} // Haskell::Internal