51043df640
* New: In Hurricane, in Collection add simple STL iterator support. So now the C++11 "for" instruction can be used instead of the in-house "forEach". Example: forEach ( Component*, icomponent, net->getComponents() ) { cout << (*icomponent) << endl; } Become: for ( Component icomponent : net->getComponents() ) { cout << icomponent << endl; } |
||
---|---|---|
.. | ||
cmake_modules | ||
doc | ||
src | ||
tests | ||
CMakeLists.txt |