diff rdf/PluginRDFIndexer.cpp @ 456:64e64e304a12

* minor addition to help out future work
author Chris Cannam
date Mon, 13 Oct 2008 13:53:05 +0000
parents 5746c559af15
children ef14acd6d102
line wrap: on
line diff
--- a/rdf/PluginRDFIndexer.cpp	Thu Oct 09 20:10:28 2008 +0000
+++ b/rdf/PluginRDFIndexer.cpp	Mon Oct 13 13:53:05 2008 +0000
@@ -153,6 +153,17 @@
     return getDescriptionURLForPluginId(id);
 }
 
+QStringList
+PluginRDFIndexer::getIndexedPluginIds() 
+{
+    QStringList ids;
+    for (StringMap::const_iterator i = m_idToDescriptionMap.begin();
+         i != m_idToDescriptionMap.end(); ++i) {
+        ids.push_back(i->first);
+    }
+    return ids;
+}
+
 bool
 PluginRDFIndexer::indexFile(QString filepath)
 {