openfoam/applications/utilities/surface/surfaceFeatureExtract
Mark Olesen 07dafe7b0b STYLE: use range-for when looping dictionary entries.
- as part of the cleanup of dictionary access methods (c6520033c9)
  made the dictionary class single inheritance from IDLList<entry>.

  This eliminates any ambiguities for iterators and allows
  for simple use of range-for looping.

  Eg,
      for (const entry& e : topDict))
      {
          Info<< "entry:" << e.keyword() << " is dict:" << e.isDict() << nl;
      }

   vs

      forAllConstIter(dictionary, topDict, iter))
      {
          Info<< "entry:" << iter().keyword()
              << " is dict:" << iter().isDict() << nl;
      }
2018-10-19 13:08:24 +02:00
..
extractionMethod ENH: use dictionary::get<word>() instead of lookup() in a few places 2018-10-19 09:11:31 +02:00
Make ENH: multiple surfaces, self-intersection in surfaceFeatureExtract (issue #450) 2017-04-11 11:46:00 +02:00
Allwclean ENH: improvements for surfaceIntersection (issue #450) 2017-04-28 08:49:45 +02:00
Allwmake COMP: Allwmake: feed through 'objects' targer for wmakeCollect 2018-05-17 08:39:57 +01:00
surfaceFeatureExtract.C STYLE: use range-for when looping dictionary entries. 2018-10-19 13:08:24 +02:00
surfaceFeatureExtractDict ENH: Updated config for release v1806 2018-06-28 12:56:00 +01:00