aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/modelinglib/qmt/config/token.h
blob: 97eadb668ef380b9dd518e1dd5cdb876957515ff (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// 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 <QString>

namespace qmt {

class Token
{
public:
    enum Type {
        TokenUndefined,
        TokenEndOfInput,
        TokenEndOfLine,
        TokenString,
        TokenInteger,
        TokenFloat,
        TokenIdentifier,
        TokenKeyword,
        TokenOperator,
        TokenColor
    };

    Token();
    Token(Type type, const QString &text, const SourcePos &sourcePos);
    Token(Type type, int subtype, const QString &text, const SourcePos &sourcePos);

    Type type() const { return m_type; }
    void setType(Type type);
    int subtype() const { return m_subtype; }
    void setSubtype(int subtype);
    QString text() const { return m_text; }
    void setText(const QString &text);
    SourcePos sourcePos() const { return m_sourcePos; }
    void setSourcePos(const SourcePos &sourcePos);

private:
    Type m_type = TokenUndefined;
    int m_subtype = 0;
    QString m_text;
    SourcePos m_sourcePos;
};

} // namespace qmt