[PR] この広告は3ヶ月以上更新がないため表示されています。
ホームページを更新後24時間以内に表示されなくなります。
00001 /****************************************************************************** 00002 * 00003 * $Id: msc.h,v 1.14 2001/03/19 19:27:40 root Exp $ 00004 * 00005 * Copyright (C) 1997-2008 by Dimitri van Heesch. 00006 * 00007 * Permission to use, copy, modify, and distribute this software and its 00008 * documentation under the terms of the GNU General Public License is hereby 00009 * granted. No representations are made about the suitability of this software 00010 * for any purpose. It is provided "as is" without express or implied warranty. 00011 * See the GNU General Public License for more details. 00012 * 00013 * Documents produced by Doxygen are derivative works derived from the 00014 * input used in their production; they are not affected by this license. 00015 * 00016 */ 00017 00018 #ifndef _MSC_H 00019 #define _MSC_H 00020 00021 #include "qtbc.h" 00022 00023 enum MscOutputFormat { MSC_BITMAP , MSC_EPS }; 00024 00025 void writeMscGraphFromFile(const char *inFile,const char *outDir, 00026 const char *outFile,MscOutputFormat format); 00027 00028 QString getMscImageMapFromFile(const QString& inFile, const QString& outDir, 00029 const QCString& relPath,const QString& context); 00030 00031 #endif 00032