aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/modelinglib/qmt/config/textsource.h
blob: caebb4ae6965b12b3894c575af706df1c86a4b60 (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 Jochen Becher
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include "sourcepos.h"

#include <QChar>

namespace qmt {

class SourceChar
{
public:
    SourceChar() = default;
    SourceChar(QChar chr, const SourcePos &sourcePos)
        : ch(chr),
          pos(sourcePos)
    {
    }

    QChar ch;
    SourcePos pos;
};

class ITextSource
{
public:
    virtual ~ITextSource() {}

    virtual SourceChar readNextChar() = 0;
};

} // namespace qmt