Blame src/msc.h

Packit 1c1d7e
/******************************************************************************
Packit 1c1d7e
 *
Packit 1c1d7e
 * 
Packit 1c1d7e
 *
Packit 1c1d7e
 * Copyright (C) 1997-2015 by Dimitri van Heesch.
Packit 1c1d7e
 *
Packit 1c1d7e
 * Permission to use, copy, modify, and distribute this software and its
Packit 1c1d7e
 * documentation under the terms of the GNU General Public License is hereby 
Packit 1c1d7e
 * granted. No representations are made about the suitability of this software 
Packit 1c1d7e
 * for any purpose. It is provided "as is" without express or implied warranty.
Packit 1c1d7e
 * See the GNU General Public License for more details.
Packit 1c1d7e
 *
Packit 1c1d7e
 * Documents produced by Doxygen are derivative works derived from the
Packit 1c1d7e
 * input used in their production; they are not affected by this license.
Packit 1c1d7e
 *
Packit 1c1d7e
 */
Packit 1c1d7e
Packit 1c1d7e
#ifndef _MSC_H
Packit 1c1d7e
#define _MSC_H
Packit 1c1d7e
Packit 1c1d7e
class QCString;
Packit 1c1d7e
class FTextStream;
Packit 1c1d7e
Packit 1c1d7e
enum MscOutputFormat { MSC_BITMAP , MSC_EPS, MSC_SVG };
Packit 1c1d7e
Packit 1c1d7e
void writeMscGraphFromFile(const char *inFile,const char *outDir,
Packit 1c1d7e
                           const char *outFile,MscOutputFormat format);
Packit 1c1d7e
Packit 1c1d7e
QCString getMscImageMapFromFile(const QCString& inFile, const QCString& outDir,
Packit 1c1d7e
                                const QCString& relPath,const QCString& context);
Packit 1c1d7e
Packit 1c1d7e
void writeMscImageMapFromFile(FTextStream &t,const QCString &inFile,
Packit 1c1d7e
                              const QCString &outDir, const QCString &relPath,
Packit 1c1d7e
                              const QCString &baseName, const QCString &context,
Packit 1c1d7e
			      MscOutputFormat format
Packit 1c1d7e
 			    );
Packit 1c1d7e
Packit 1c1d7e
#endif
Packit 1c1d7e