comparison rdf/PluginRDFDescription.cpp @ 508:1b8c748fd7ea

* Support recording the summary type in transform
author Chris Cannam
date Fri, 05 Dec 2008 16:18:04 +0000
parents 0944d13689b2
children e340b2fb9471
comparison
equal deleted inserted replaced
507:0944d13689b2 508:1b8c748fd7ea
373 373
374 v = SimpleSPARQLQuery::singleResultQuery 374 v = SimpleSPARQLQuery::singleResultQuery
375 (m, queryTemplate.arg("feature"), "feature"); 375 (m, queryTemplate.arg("feature"), "feature");
376 376
377 if (v.type == SimpleSPARQLQuery::URIValue && v.value != "") { 377 if (v.type == SimpleSPARQLQuery::URIValue && v.value != "") {
378 cerr << "Feature attribute URI: \"" << v.value.toStdString() << "\"" << endl;
379 m_outputFeatureAttributeURIMap[outputId] = v.value; 378 m_outputFeatureAttributeURIMap[outputId] = v.value;
380 } else {
381 cerr << "No feature attribute URI: \"" << v.value.toStdString() << "\"" << endl;
382 } 379 }
383 380
384 v = SimpleSPARQLQuery::singleResultQuery 381 v = SimpleSPARQLQuery::singleResultQuery
385 (m, queryTemplate.arg("signal_type"), "signal_type"); 382 (m, queryTemplate.arg("signal_type"), "signal_type");
386 383