summaryrefslogtreecommitdiffstats
path: root/src/dotnode.h
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2021-03-14 14:47:59 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2021-03-18 20:57:40 (GMT)
commitfa1897b1889f7bf74de68f1ac99cf3be343a7551 (patch)
treeea14c45937cb6fef237c0fcafbd5b0923abd8f0a /src/dotnode.h
parent0d05e79d67b5b808918541f429b06805207e8bdb (diff)
downloadDoxygen-fa1897b1889f7bf74de68f1ac99cf3be343a7551.zip
Doxygen-fa1897b1889f7bf74de68f1ac99cf3be343a7551.tar.gz
Doxygen-fa1897b1889f7bf74de68f1ac99cf3be343a7551.tar.bz2
Refactoring: replace QFile/FTextStream with fstream/stringstream
Diffstat (limited to 'src/dotnode.h')
-rw-r--r--src/dotnode.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/dotnode.h b/src/dotnode.h
index 2eb3f7d..bfe5af4 100644
--- a/src/dotnode.h
+++ b/src/dotnode.h
@@ -19,12 +19,12 @@
#include <vector>
#include <map>
#include <deque>
+#include <iostream>
#include "dotgraph.h"
class ClassDef;
class DotNode;
-class FTextStream;
/** Attributes of an edge of a dot graph */
class EdgeInfo
@@ -75,14 +75,14 @@ class DotNode
void removeParent(DotNode *n);
int findParent( DotNode *n );
- void write(FTextStream &t,GraphType gt,GraphOutputFormat f,
+ void write(std::ostream &t,GraphType gt,GraphOutputFormat f,
bool topDown,bool toChildren,bool backArrows) const;
- void writeXML(FTextStream &t,bool isClassGraph) const;
- void writeDocbook(FTextStream &t,bool isClassGraph) const;
- void writeDEF(FTextStream &t) const;
- void writeBox(FTextStream &t,GraphType gt,GraphOutputFormat f,
+ void writeXML(std::ostream &t,bool isClassGraph) const;
+ void writeDocbook(std::ostream &t,bool isClassGraph) const;
+ void writeDEF(std::ostream &t) const;
+ void writeBox(std::ostream &t,GraphType gt,GraphOutputFormat f,
bool hasNonReachableChildren) const;
- void writeArrow(FTextStream &t,GraphType gt,GraphOutputFormat f,const DotNode *cn,
+ void writeArrow(std::ostream &t,GraphType gt,GraphOutputFormat f,const DotNode *cn,
const EdgeInfo *ei,bool topDown, bool pointBack=TRUE) const;
QCString label() const { return m_label; }