summaryrefslogtreecommitdiffstats
path: root/src/dot.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2001-09-09 13:43:55 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2001-09-09 13:43:55 (GMT)
commite4e787013da916e7331797233c1bec05c14b1f76 (patch)
tree145c4c47312e94921350f78dad318333913db263 /src/dot.h
parent1fb3a77524a31472d1ecb9bafb3491ddbbd096e3 (diff)
downloadDoxygen-e4e787013da916e7331797233c1bec05c14b1f76.zip
Doxygen-e4e787013da916e7331797233c1bec05c14b1f76.tar.gz
Doxygen-e4e787013da916e7331797233c1bec05c14b1f76.tar.bz2
Release-1.2.10-20010909
Diffstat (limited to 'src/dot.h')
-rw-r--r--src/dot.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/dot.h b/src/dot.h
index 7539dbe..99a51be 100644
--- a/src/dot.h
+++ b/src/dot.h
@@ -76,6 +76,7 @@ class DotNode
int maxDistance=1000,bool backArrows=TRUE);
int m_subgraphId;
void clearWriteFlag();
+ void writeXML(QTextStream &t);
private:
void colorConnectedNodes(int curColor);
@@ -86,7 +87,7 @@ class DotNode
const DotNode *findDocNode() const; // only works for acyclic graphs!
int m_number;
QCString m_label; //!< label text
- QCString m_url; //!< url of the node (format: remove$local)
+ QCString m_url; //!< url of the node (format: remote$local)
QList<DotNode> *m_parents; //!< list of parent nodes (incoming arrows)
QList<DotNode> *m_children; //!< list of child nodes (outgoing arrows)
QList<EdgeInfo> *m_edgeInfo; //!< edge info for each child
@@ -123,6 +124,8 @@ class DotClassGraph
bool isTrivial() const;
QCString writeGraph(QTextStream &t,GraphOutputFormat f,const char *path,
bool TBRank=TRUE,bool imageMap=TRUE);
+
+ void writeXML(QTextStream &t);
QCString diskName() const;
private: