blob: 064cf374afc139a4138ee91685d3faf8ac81b288 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial
#ifndef PARSETABLE_H
#define PARSETABLE_H
#include <QtCore/qglobal.h>
QT_FORWARD_DECLARE_CLASS(QTextStream);
class Automaton;
class ParseTable
{
public:
ParseTable (QTextStream &out);
void operator () (Automaton *a);
private:
QTextStream &out;
};
#endif // PARSETABLE_H
|