From cddae2d9f7c4b0f4bc13b9e32db2b05ba151e4f7 Mon Sep 17 00:00:00 2001 From: Mohcine Chraibi <m.chraibi@fz-juelich.de> Date: Fri, 15 Mar 2019 19:46:46 +0100 Subject: [PATCH] remove cout --- src/SaxParser.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SaxParser.cpp b/src/SaxParser.cpp index f99ba8a..f9e46e0 100644 --- a/src/SaxParser.cpp +++ b/src/SaxParser.cpp @@ -1113,7 +1113,7 @@ QString SaxParser::extractGeometryFilenameTXT(QString &filename) while (!in.atEnd()) { //look for a line with line = in.readLine(); - std::cout << " >> " << line.toStdString().c_str() << endl; + // std::cout << " >> " << line.toStdString().c_str() << endl; if(line.split(":").size()==2) { if(line.split(":")[0] == "#geometry") @@ -1123,7 +1123,7 @@ QString SaxParser::extractGeometryFilenameTXT(QString &filename) } }// while } // if open - cout << ">> geo: " << extracted_geo_name.toStdString().c_str() << endl; +//cout << ">> geo: " << extracted_geo_name.toStdString().c_str() << endl; return extracted_geo_name; } -- GitLab