| @@ -78,16 +78,6 @@ LADSPAInfo::PrintInfo(void) | |||||
| << m_Libraries[p->LibraryIndex].Basename | << m_Libraries[p->LibraryIndex].Basename | ||||
| << ": " << p->Index << endl; | << ": " << p->Index << endl; | ||||
| } | } | ||||
| cout << endl; | |||||
| cout << " RDF paths:" << endl; | |||||
| for (vector<string>::iterator p = m_RDFPaths.begin(); p != m_RDFPaths.end(); p++) { | |||||
| cout << " " << *p << endl; | |||||
| } | |||||
| cout << endl; | |||||
| cout << " RDF files:" << endl; | |||||
| for (vector<RDFFileInfo>::iterator f = m_RDFFiles.begin(); f != m_RDFFiles.end(); f++) { | |||||
| cout << " " << m_RDFPaths[f->RDFPathIndex] << f->Basename << endl; | |||||
| } | |||||
| } | } | ||||
| void | void | ||||
| @@ -308,9 +298,6 @@ LADSPAInfo::CleanUp(void) | |||||
| m_Libraries.clear(); | m_Libraries.clear(); | ||||
| m_Paths.clear(); | m_Paths.clear(); | ||||
| m_RDFFiles.clear(); | |||||
| m_RDFPaths.clear(); | |||||
| lrdf_cleanup(); | lrdf_cleanup(); | ||||
| m_OrderedPluginList.clear(); | m_OrderedPluginList.clear(); | ||||
| @@ -119,12 +119,6 @@ private: | |||||
| const LADSPA_Descriptor *Descriptor; // Descriptor, NULL | const LADSPA_Descriptor *Descriptor; // Descriptor, NULL | ||||
| }; | }; | ||||
| struct RDFFileInfo | |||||
| { | |||||
| unsigned long RDFPathIndex; // Index of path in m_RDFPaths | |||||
| std::string Basename; // Filename | |||||
| }; | |||||
| typedef std::map<unsigned long, | typedef std::map<unsigned long, | ||||
| unsigned long, | unsigned long, | ||||
| std::less<unsigned long> > IDMap; | std::less<unsigned long> > IDMap; | ||||
| @@ -149,9 +143,6 @@ private: | |||||
| std::vector<LibraryInfo> m_Libraries; | std::vector<LibraryInfo> m_Libraries; | ||||
| std::vector<PluginInfo> m_Plugins; | std::vector<PluginInfo> m_Plugins; | ||||
| std::vector<std::string> m_RDFPaths; | |||||
| std::vector<RDFFileInfo> m_RDFFiles; | |||||
| IDMap m_IDLookup; | IDMap m_IDLookup; | ||||
| StringMap m_FilenameLookup; | StringMap m_FilenameLookup; | ||||