Warning, /include/Geant4/tools/forit is written in an unsupported language. File is not indexed.
0001 // Copyright (C) 2010, Guy Barrand. All rights reserved.
0002 // See the file tools.license for terms.
0003
0004 #ifndef tools_forit
0005 #define tools_forit
0006
0007 #define tools_vforcit(a__T,a__v,a__it) \
0008 for(auto a__it = (a__v).cbegin(); (a__it) != (a__v).cend(); ++(a__it))
0009
0010 #define tools_vforit(a__T,a__v,a__it) \
0011 for(auto a__it = (a__v).begin(); (a__it) != (a__v).end(); ++(a__it))
0012
0013 #define tools_lforcit(a__T,a__l,a__it) tools_vforcit(a__T,a__l,a__it)
0014
0015 #define tools_lforit(a__T,a__l,a__it) tools_vforit(a__T,a__l,a__it)
0016
0017 #endif
0018