Go to the documentation of this file.
5 #ifndef BALL_DATATYPE_FOREACH_H
6 #define BALL_DATATYPE_FOREACH_H
29 #define BALL_FOREACH(container, element_iterator) \
30 for (element_iterator = container.begin(); \
31 !element_iterator.isEnd(); \
34 #endif // BALL_DATATYPE_FOREACH_H