]> git.tdb.fi Git - libs/datafile.git/blobdiff - source/collection.cpp
Expose raw open functionality from Collection
[libs/datafile.git] / source / collection.cpp
index 65b4d5a3914192192f2092425e686b7d8ee56576..cffb7e22e7041ba48268c9643c6d7791e118407f 100644 (file)
@@ -92,7 +92,7 @@ void Collection::add_source(CollectionSource &s)
        sources.push_back(&s);
 }
 
-IO::Seekable *Collection::open_from_sources(const string &name)
+IO::Seekable *Collection::open_raw(const string &name) const
 {
        for(SourceList::const_iterator i=sources.begin(); i!=sources.end(); ++i)
                if(IO::Seekable *io = (*i)->open(name))