Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #define STD_FOREACH(collectionType, collectionInst, iteratorName) \
- for( collectionType::iterator iteratorName = (collectionInst).begin() ; iteratorName != (collectionInst).end() ; iteratorName++)
- #define STD_CONST_FOREACH(collectionType, collectionInst, iteratorName) \
- for( collectionType::const_iterator iteratorName = (collectionInst).begin() ; iteratorName != (collectionInst).end() ; iteratorName++)
Add Comment
Please, Sign In to add comment