aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/mockup/texteditor/quickfix.h
blob: 1e317bfce3fbe409de2338d9045aedc5fa01034d (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
25
26
27
28
29
30
31
32
33
34
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include <QString>

namespace TextEditor {

class AssistInterface;

class QuickFixOperation
{
public:
    QuickFixOperation(int priority = -1)
        : _priority(priority)
    {}

    virtual ~QuickFixOperation() {}

    virtual int priority() const { return _priority; }
    void setPriority(int priority) { _priority = priority; }

    virtual QString description() const { return _description; }
    void setDescription(const QString &description) { _description = description; }

    virtual void perform() = 0;

private:
    int _priority = -1;
    QString _description;
};

}