Mercurial > hg > svcore
diff rdf/RDFTransformFactory.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 | 27c861cce97b |
children | 06579b8ffb7b |
line wrap: on
line diff
--- a/rdf/RDFTransformFactory.cpp Tue Nov 26 11:16:37 2013 +0000 +++ b/rdf/RDFTransformFactory.cpp Tue Nov 26 13:35:08 2013 +0000 @@ -34,9 +34,6 @@ #include <dataquay/BasicStore.h> #include <dataquay/PropertyObject.h> -using std::cerr; -using std::endl; - using Dataquay::Uri; using Dataquay::Node; using Dataquay::Nodes; @@ -371,7 +368,7 @@ s << uri << " a vamp:Transform ;" << endl; s << " vamp:plugin <" << QUrl(pluginUri).toEncoded().data() << "> ;" << endl; } else { - std::cerr << "WARNING: RDFTransformFactory::writeTransformToRDF: No plugin URI available for plugin id \"" << pluginId << "\", writing synthetic plugin and library resources" << std::endl; + cerr << "WARNING: RDFTransformFactory::writeTransformToRDF: No plugin URI available for plugin id \"" << pluginId << "\", writing synthetic plugin and library resources" << endl; QString type, soname, label; PluginIdentifier::parseIdentifier(pluginId, type, soname, label); s << uri << "_plugin a vamp:Plugin ;" << endl; @@ -388,7 +385,7 @@ QString outputUri = description.getOutputUri(outputId); if (transform.getOutput() != "" && outputUri == "") { - std::cerr << "WARNING: RDFTransformFactory::writeTransformToRDF: No output URI available for transform output id \"" << transform.getOutput() << "\", writing a synthetic output resource" << std::endl; + cerr << "WARNING: RDFTransformFactory::writeTransformToRDF: No output URI available for transform output id \"" << transform.getOutput() << "\", writing a synthetic output resource" << endl; } if (transform.getStepSize() != 0) {