summaryrefslogtreecommitdiffstats
path: root/src/dotclassgraph.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/dotclassgraph.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/dotclassgraph.h')
-rw-r--r--src/dotclassgraph.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/dotclassgraph.h b/src/dotclassgraph.h
index 168d315..5b00098 100644
--- a/src/dotclassgraph.h
+++ b/src/dotclassgraph.h
@@ -16,6 +16,8 @@
#ifndef DOTCLASSGRAPH_H
#define DOTCLASSGRAPH_H
+#include <iostream>
+
#include "classdef.h"
#include "dotnode.h"
#include "dotgraph.h"
@@ -29,13 +31,13 @@ public:
bool isTrivial() const;
bool isTooBig() const;
int numNodes() const;
- QCString writeGraph(FTextStream &t,GraphOutputFormat gf,EmbeddedOutputFormat ef,
+ QCString writeGraph(std::ostream &t,GraphOutputFormat gf,EmbeddedOutputFormat ef,
const char *path, const char *fileName, const char *relPath,
bool TBRank=TRUE,bool imageMap=TRUE,int graphId=-1);
- void writeXML(FTextStream &t);
- void writeDocbook(FTextStream &t);
- void writeDEF(FTextStream &t);
+ void writeXML(std::ostream &t);
+ void writeDocbook(std::ostream &t);
+ void writeDEF(std::ostream &t);
protected:
virtual QCString getBaseName() const;