diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-06-25 15:06:41 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-06-25 15:06:41 (GMT) |
commit | 5ade6c6ef255f31d264e74b176c257bbc85cd4c7 (patch) | |
tree | 85b63c5acfeaa5def630341302a12b466fbc3a42 /src/dot.h | |
parent | cb417a1f59c3bf956677a59ce94cf13b4010f3c4 (diff) | |
download | Doxygen-5ade6c6ef255f31d264e74b176c257bbc85cd4c7.zip Doxygen-5ade6c6ef255f31d264e74b176c257bbc85cd4c7.tar.gz Doxygen-5ade6c6ef255f31d264e74b176c257bbc85cd4c7.tar.bz2 |
Release-1.1.4-20000625
Diffstat (limited to 'src/dot.h')
-rw-r--r-- | src/dot.h | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -52,7 +52,9 @@ class DotNode const QCString &baseName, bool lrRank, bool renderParents, - int distance); + int distance, + bool backArrow + ); public: DotNode(int n,const char *lab,const char *url,int distance = 0,bool rootNode=FALSE); ~DotNode(); @@ -70,7 +72,7 @@ class DotNode void removeParent(DotNode *n); int number() const { return m_number; } void write(QTextStream &t,GraphOutputFormat f,bool topDown,bool toChildren, - int maxDistance=1000); + int maxDistance=1000,bool backArrows=TRUE); int m_subgraphId; void clearWriteFlag(); @@ -137,7 +139,7 @@ class DotClassGraph class DotInclDepGraph { public: - DotInclDepGraph(FileDef *fd); + DotInclDepGraph(FileDef *fd,bool inverse=FALSE); ~DotInclDepGraph(); void writeGraph(QTextStream &t, GraphOutputFormat f,const char *path); bool isTrivial() const; @@ -150,4 +152,5 @@ class DotInclDepGraph static int m_curNodeNumber; QCString m_diskName; int m_maxDistance; + bool m_inverse; }; |