diff options
Diffstat (limited to 'project2/common/instanceStore.h')
-rw-r--r-- | project2/common/instanceStore.h | 26 |
1 files changed, 18 insertions, 8 deletions
diff --git a/project2/common/instanceStore.h b/project2/common/instanceStore.h index c61ccfe..36f4e73 100644 --- a/project2/common/instanceStore.h +++ b/project2/common/instanceStore.h @@ -29,25 +29,35 @@ class InstanceStore { prune(); } - static void OnEach(const boost::function<void(typename StoreType::value_type &)> & func) + static void OnEach(const boost::function<void(typename StoreType::value_type &)> & func, bool ContinueOnError = false) { BOOST_FOREACH(const auto & l, GetAll()) { - try { - func(l.get()); + if (ContinueOnError) { + try { + func(l.get()); + } + catch (...) { + } } - catch (...) { + else { + func(l.get()); } } prune(); } - static void OnAll(const boost::function<void(Type *)> & func) + static void OnAll(const boost::function<void(Type *)> & func, bool ContinueOnError = false) { BOOST_FOREACH(const auto & l, GetAll()) { - try { - func(l.get()); + if (ContinueOnError) { + try { + func(l.get()); + } + catch (...) { + } } - catch (...) { + else { + func(l.get()); } } prune(); |