diff options
Diffstat (limited to 'project2/xmlObjectLoader.cpp')
-rw-r--r-- | project2/xmlObjectLoader.cpp | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/project2/xmlObjectLoader.cpp b/project2/xmlObjectLoader.cpp index 6934aaf..9b4b24b 100644 --- a/project2/xmlObjectLoader.cpp +++ b/project2/xmlObjectLoader.cpp @@ -64,7 +64,33 @@ LoaderBase::onIdle() } void +LoaderBase::onIteration() +{ + BOOST_FOREACH(ElementLoaderMap::value_type l, getMap()) { + l.second->onIteration(); + } +} + +void +LoaderBase::onPeriodic() +{ + BOOST_FOREACH(ElementLoaderMap::value_type l, getMap()) { + l.second->onPeriodic(); + } +} + +void ElementLoader::onIdle() { } +void +ElementLoader::onIteration() +{ +} + +void +ElementLoader::onPeriodic() +{ +} + |