summaryrefslogtreecommitdiffstats
path: root/src/dot.h
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-05-18 18:43:39 (GMT)
committerGitHub <noreply@github.com>2019-05-18 18:43:39 (GMT)
commitc9a1d6989e58d79c3f1107733e135a926ac30fa8 (patch)
tree0bdd43f8c390b81bcc237f2d600b06b5bf1d7592 /src/dot.h
parent6c76841e6f44b9873f69aa8bb35bc1e22ccdb966 (diff)
downloadDoxygen-c9a1d6989e58d79c3f1107733e135a926ac30fa8.zip
Doxygen-c9a1d6989e58d79c3f1107733e135a926ac30fa8.tar.gz
Doxygen-c9a1d6989e58d79c3f1107733e135a926ac30fa8.tar.bz2
Revert "alternate fix for .dot file handling"
Diffstat (limited to 'src/dot.h')
-rw-r--r--src/dot.h13
1 files changed, 3 insertions, 10 deletions
diff --git a/src/dot.h b/src/dot.h
index d7cfa0f..7a2505e 100644
--- a/src/dot.h
+++ b/src/dot.h
@@ -393,8 +393,8 @@ class DotRunner
};
/** Creates a runner for a dot \a file. */
- DotRunner(const QCString& baseName, const QCString& path, const QCString& md5Hash,
- bool checkResult, const QCString &imageName = QCString());
+ DotRunner(const QCString &file,const QCString &fontPath,bool checkResult,
+ const QCString &imageName = QCString());
/** Adds an additional job to the run.
* Performing multiple jobs one file can be faster.
@@ -409,24 +409,19 @@ class DotRunner
bool run();
const CleanupItem &cleanup() const { return m_cleanupItem; }
- DotConstString const& getBaseName() { return m_baseName; }
- DotConstString const& getPath() { return m_path; }
- DotConstString const& getMd5Hash() { return m_md5Hash; }
-
private:
DotConstString m_dotExe;
bool m_multiTargets;
QList<DotConstString> m_jobs;
DotConstString m_postArgs;
DotConstString m_postCmd;
- DotConstString m_baseName;
+ DotConstString m_file;
DotConstString m_path;
bool m_checkResult;
DotConstString m_imageName;
DotConstString m_imgExt;
bool m_cleanUp;
CleanupItem m_cleanupItem;
- DotConstString m_md5Hash;
};
/** Helper class to insert a set of map file into an output file */
@@ -502,8 +497,6 @@ class DotManager
const QCString &figureNAme,const QCString &relPath);
bool run();
- bool containsRun(const QCString& baseName, const QCString& path, const QCString& md5Hash);
-
private:
DotManager();
virtual ~DotManager();