coriolis/hurricane
Jean-Paul Chaput 51043df640 Merge "collections" branch from <github> (G. Gouvine).
* 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;
         }
2015-06-08 11:51:09 +02:00
..
cmake_modules * All Tools: 2010-07-14 19:39:36 +00:00
doc Support for Uniquification. Rewrite of the Blif parser. 2015-04-25 16:52:18 +02:00
src Merge "collections" branch from <github> (G. Gouvine). 2015-06-08 11:51:09 +02:00
tests * All Tools: 2012-12-03 08:26:28 +00:00
CMakeLists.txt Starting to implement support for Windows/Cygwin. 2014-07-13 13:14:49 +02:00