Doxygen
Loading...
Searching...
No Matches
msc.h
Go to the documentation of this file.
1/******************************************************************************
2 *
3 * Copyright (C) 1997-2021 by Dimitri van Heesch.
4 *
5 * Permission to use, copy, modify, and distribute this software and its
6 * documentation under the terms of the GNU General Public License is hereby
7 * granted. No representations are made about the suitability of this software
8 * for any purpose. It is provided "as is" without express or implied warranty.
9 * See the GNU General Public License for more details.
10 *
11 * Documents produced by Doxygen are derivative works derived from the
12 * input used in their production; they are not affected by this license.
13 *
14 */
15
16#ifndef MSC_H
17#define MSC_H
18
19class QCString;
20class TextStream;
21
22enum class MscOutputFormat { BITMAP, EPS, SVG };
23
24void writeMscGraphFromFile(const QCString &inFile,const QCString &outDir,
25 const QCString &outFile,MscOutputFormat format,
26 const QCString &srcFile,int srcLine);
27
28QCString getMscImageMapFromFile(const QCString &inFile, const QCString &outDir,
29 const QCString &relPath,const QCString &context,
30 const QCString &srcFile,int srcLine);
31
32void writeMscImageMapFromFile(TextStream &t,const QCString &inFile,
33 const QCString &outDir, const QCString &relPath,
34 const QCString &baseName, const QCString &context,
35 MscOutputFormat format,
36 const QCString &srcFile,int srcLine
37 );
38
39#endif
40
This is an alternative implementation of QCString.
Definition qcstring.h:101
Text streaming class that buffers data.
Definition textstream.h:36
void writeMscImageMapFromFile(TextStream &t, const QCString &inFile, const QCString &outDir, const QCString &relPath, const QCString &baseName, const QCString &context, MscOutputFormat format, const QCString &srcFile, int srcLine)
Definition msc.cpp:233
QCString getMscImageMapFromFile(const QCString &inFile, const QCString &outDir, const QCString &relPath, const QCString &context, const QCString &srcFile, int srcLine)
MscOutputFormat
Definition msc.h:22
void writeMscGraphFromFile(const QCString &inFile, const QCString &outDir, const QCString &outFile, MscOutputFormat format, const QCString &srcFile, int srcLine)
Definition msc.cpp:156