diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2004-07-04 18:58:02 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2004-07-04 18:58:02 (GMT) |
commit | c1605e5b6df0248e8dae3a578a89885f26b41c88 (patch) | |
tree | 664f7eba133cf2b4d4e8add25229777806fc9b8c /src/dot.h | |
parent | 6b195c8d27c7cba3885acf1540f33ea7f51b9d1b (diff) | |
download | Doxygen-c1605e5b6df0248e8dae3a578a89885f26b41c88.zip Doxygen-c1605e5b6df0248e8dae3a578a89885f26b41c88.tar.gz Doxygen-c1605e5b6df0248e8dae3a578a89885f26b41c88.tar.bz2 |
Release-1.3.7-20040704
Diffstat (limited to 'src/dot.h')
-rw-r--r-- | src/dot.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -65,7 +65,7 @@ class DotNode void removeChild(DotNode *n); void removeParent(DotNode *n); void write(QTextStream &t,GraphType gt,GraphOutputFormat f, - bool topDown,bool toChildren,int maxDistance,bool backArrows); + bool topDown,bool toChildren,int maxDistance,bool backArrows,bool reNumber); int m_subgraphId; void clearWriteFlag(); void writeXML(QTextStream &t,bool isClassGraph); @@ -76,9 +76,9 @@ class DotNode private: void colorConnectedNodes(int curColor); void writeBox(QTextStream &t,GraphType gt,GraphOutputFormat f, - bool hasNonReachableChildren); + bool hasNonReachableChildren, bool reNumber=FALSE); void writeArrow(QTextStream &t,GraphType gt,GraphOutputFormat f,DotNode *cn, - EdgeInfo *ei,bool topDown, bool pointBack=TRUE); + EdgeInfo *ei,bool topDown, bool pointBack=TRUE, bool reNumber=FALSE); const DotNode *findDocNode() const; // only works for acyclic graphs! int m_number; QCString m_label; //!< label text @@ -102,7 +102,7 @@ class DotNode DotNode *root, GraphType gt, GraphOutputFormat f, const QCString &baseName, bool lrRank, bool renderParents, - int distance, bool backArrows + int distance, bool backArrows, bool reNumber ); friend QCString computeMd5Signature( DotNode *root, GraphType gt, |