]> git.tdb.fi Git - libs/datafile.git/blobdiff - source/collection.cpp
Redesign automatic object loading
[libs/datafile.git] / source / collection.cpp
index a16ae5a9dc2e7a9f70f638093348b59c8bd561eb..bf1c5edc211e93b33f1dacc833e0ac1a38657a5e 100644 (file)
@@ -11,20 +11,9 @@ Collection::~Collection()
                delete *i;
 }
 
-void Collection::add_future(const std::string &name)
+void Collection::add_source(CollectionSource &s)
 {
-       if(items.count(name))
-               throw key_error(typeid(ItemMap));
-
-       for(TypeList::const_iterator i=types.begin(); i!=types.end(); ++i)
-               if((*i)->match_name(name))
-               {
-                       items.insert(ItemMap::value_type(name, (*i)->create_future()));
-                       return;
-               }
-
-       /* XXX throw something?  If we do, DirectoryCollection needs some way to
-       check if a name matches any item type. */
+       sources.push_back(&s);
 }