visitCategories overloads
Declared in <ball_loggermanager.h>
Invoke the specified visitor functor on each category managed by this object, providing that functor modifiable access to each category. visitor must be a functor that can be called as if it had the following signature: ` void operator()(Category *); `
template<class t_CATEGORY_VISITOR>
void
visitCategories(t_CATEGORY_VISITOR const& visitor);
» more...
Invoke the specified visitor functor on each category managed by this object, providing that functor non-modifiable access to each category. visitor must be a functor that can be called as if it had the following signature: ` void operator()(const Category *); `
template<class t_CATEGORY_VISITOR>
void
visitCategories(t_CATEGORY_VISITOR const& visitor) const;
» more...