blob: 57beb64f45d7f23fa63ec1656fcf28b9b4f7c96e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// Copyright (C) Filippo Cucchetto <filippocucchetto@gmail.com>
// 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 TextEditor { class SimpleCodeStylePreferences; }
namespace Nim {
class NimSettings : public Core::PagedSettings
{
public:
NimSettings();
~NimSettings();
Utils::StringAspect nimSuggestPath;
static TextEditor::SimpleCodeStylePreferences *globalCodeStyle();
};
} // Nim
|