diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-01-05 10:26:10 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-01-05 10:26:10 (GMT) |
commit | a66e1ada3c7467e267ff39262178fa4577f0b6ab (patch) | |
tree | ee15d10d932fa1d21de3ebfcb445e2bd81b9f00b /src/dot.h | |
parent | ff11b7d98ad7d24770afd151aa6b439adc7506d2 (diff) | |
download | Doxygen-a66e1ada3c7467e267ff39262178fa4577f0b6ab.zip Doxygen-a66e1ada3c7467e267ff39262178fa4577f0b6ab.tar.gz Doxygen-a66e1ada3c7467e267ff39262178fa4577f0b6ab.tar.bz2 |
Release-1.2.13.1
Diffstat (limited to 'src/dot.h')
-rw-r--r-- | src/dot.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -19,6 +19,7 @@ #include "qtbc.h" #include <qlist.h> #include <qdict.h> +#include "sortdict.h" class ClassDef; class FileDef; @@ -68,16 +69,17 @@ class DotNode ); void setDistance(int distance); void addParent(DotNode *n); - void deleteNode(DotNodeList &deletedList); + void deleteNode(DotNodeList &deletedList,SIntDict<DotNode> *skipNodes=0); void removeChild(DotNode *n); void removeParent(DotNode *n); - int number() const { return m_number; } void write(QTextStream &t,GraphOutputFormat f,bool topDown,bool toChildren, int maxDistance=1000,bool backArrows=TRUE); int m_subgraphId; void clearWriteFlag(); void writeXML(QTextStream &t); void writeDEF(QTextStream &t); + QCString label() const { return m_label; } + int number() const { return m_number; } private: void colorConnectedNodes(int curColor); |