#ifndef LIFE_SRC_UTIL_BOX_TRAVERSER_ #define LIFE_SRC_UTIL_BOX_TRAVERSER_ #include #include #include "box_indicator.h" namespace life { namespace util { struct BoxTraverser : public BoxIndicator { using BoxIndicator::BoxIndicator; void for_each(const std::function& f) const; }; } } #endif // LIFE_SRC_UTIL_BOX_TRAVERSER_