blob: 41cf66ce2764fefa5cd60a2a812fdbc6d0b92275 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#ifndef DOTVIEW_H
#define DOTVIEW_H
#include <QtCore/qstring.h>
/// Show a dot digraph in an image viewer
/// \param name base name for files
/// \param graph graph
bool showDotGraph(const QString &name, const QString &graph);
#endif // DOTVIEW_H
|