blob: 9d3a97026b02890731eb263aa508285fe5f3ff9c (
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 OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#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
|