Effective implementation of algorithms (Master Thesis)
Effective and error-free implementation of algorithms
src/utils/macros/foreach.h
Go to the documentation of this file.
00001 #ifndef H_UTILS_MACROS_FOREACH
00002 #define H_UTILS_MACROS_FOREACH
00003 
00022 #define FOREACH(it, container) for( \
00023         __typeof(container.begin()) it = container.begin(); \
00024         it != container.end(); ++it)
00025 
00026 #endif
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines