summaryrefslogtreecommitdiffstats
path: root/src/tools/qlalr/dotgraph.h
blob: 42d4527c469e60c6a3a0e8e99bcc4ee01a91e46c (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 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