diff options
Diffstat (limited to 'project2/xmlObjectLoader.cpp')
-rw-r--r-- | project2/xmlObjectLoader.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/project2/xmlObjectLoader.cpp b/project2/xmlObjectLoader.cpp index 71f1b53..6934aaf 100644 --- a/project2/xmlObjectLoader.cpp +++ b/project2/xmlObjectLoader.cpp @@ -55,3 +55,16 @@ LoaderBase::collectAll(const Glib::ustring & ns, const xmlpp::Element * node, bo } } +void +LoaderBase::onIdle() +{ + BOOST_FOREACH(ElementLoaderMap::value_type l, getMap()) { + l.second->onIdle(); + } +} + +void +ElementLoader::onIdle() +{ +} + |