1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
3
4#ifndef DOTGRAPH_H
5#define DOTGRAPH_H
6
7#include <QtCore/qglobal.h>
8
9QT_FORWARD_DECLARE_CLASS(QTextStream);
10class Automaton;
11
12class DotGraph
13{
14public:
15 DotGraph (QTextStream &out);
16
17 void operator () (Automaton *a);
18
19private:
20 QTextStream &out;
21};
22
23#endif // DOTGRAPH_H
24

source code of qtbase/src/tools/qlalr/dotgraph.h