blob: 317f4aeb0a5ff2ffac596f667fa555038a16dc48 (
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 DOTGRAPH_H
#define DOTGRAPH_H
#include <QtCore/qglobal.h>
QT_FORWARD_DECLARE_CLASS(QTextStream);
class Automaton;
class DotGraph
{
public:
DotGraph (QTextStream &out);
void operator () (Automaton *a);
private:
QTextStream &out;
};
#endif // DOTGRAPH_H
|