comparison rdf/RDFFeatureWriter.cpp @ 843:e802e550a1f2

Drop std:: from cout, cerr, endl -- pull these in through Debug.h
author Chris Cannam
date Tue, 26 Nov 2013 13:35:08 +0000
parents 31ab733841d0
children 06579b8ffb7b
comparison
equal deleted inserted replaced
842:23d3a6eca5c3 843:e802e550a1f2
261 // Appending to an RDF file is tricky, because we need to ensure 261 // Appending to an RDF file is tricky, because we need to ensure
262 // that our URIs differ from any already in the file. This is a 262 // that our URIs differ from any already in the file. This is a
263 // dirty grubby low-rent way of doing that. This function is 263 // dirty grubby low-rent way of doing that. This function is
264 // called by FileFeatureWriter::getOutputFile when in append mode. 264 // called by FileFeatureWriter::getOutputFile when in append mode.
265 265
266 // std::cerr << "reviewFileForAppending(" << filename << ")" << std::endl; 266 // cerr << "reviewFileForAppending(" << filename << ")" << endl;
267 267
268 QFile file(filename); 268 QFile file(filename);
269 269
270 // just return, don't report failure -- function that called us will do that 270 // just return, don't report failure -- function that called us will do that
271 if (!file.open(QIODevice::ReadOnly)) return; 271 if (!file.open(QIODevice::ReadOnly)) return;