diff rdf/PluginRDFIndexer.h @ 467:c9b055f84326

* make use of CachedFile (untested)
author Chris Cannam
date Mon, 27 Oct 2008 18:15:20 +0000
parents 2019d89ebcf9
children e0784311a103
line wrap: on
line diff
--- a/rdf/PluginRDFIndexer.h	Mon Oct 27 15:07:35 2008 +0000
+++ b/rdf/PluginRDFIndexer.h	Mon Oct 27 18:15:20 2008 +0000
@@ -22,7 +22,7 @@
 #include <map>
 #include <set>
 
-class FileSource;
+//!!!class FileSource;
 
 class PluginRDFIndexer
 {
@@ -55,14 +55,16 @@
 protected:
     PluginRDFIndexer();
     QMutex m_mutex;
+/*!!!
     std::set<FileSource *> m_sources;
+*/
     typedef std::map<QString, QString> StringMap;
     StringMap m_uriToIdMap;
     StringMap m_idToUriMap;
     StringMap m_idToDescriptionMap;
     bool indexFile(QString path);
     static PluginRDFIndexer *m_instance;
-    void expireCacheMaybe(QString);
+//!!!    void expireCacheMaybe(QString);
 };
 
 #endif