openfoam/applications/utilities/preProcessing/createZeroDirectory
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
..
Make ENH: Added new ceeateZeroDirectory utility 2015-11-30 15:52:40 +00:00
boundaryInfo.C COMP: rename dictionary::read<T> to dictionary::readEntry<T> 2018-07-30 15:52:40 +02:00
boundaryInfo.H ENH: Added new ceeateZeroDirectory utility 2015-11-30 15:52:40 +00:00
boundaryTemplates.C STYLE: use range-for when looping dictionary entries. 2018-10-19 13:08:24 +02:00
boundaryTemplates.H ENH: change wordRes to be a List of wordRe instead of a wrapper (issue #259) 2018-02-21 10:05:30 +01:00
caseInfo.C ENH: use dictionary::readEntry for detection of input errors (#762, #1033) 2018-10-05 10:15:13 +02:00
caseInfo.H ENH: change wordRes to be a List of wordRe instead of a wrapper (issue #259) 2018-02-21 10:05:30 +01:00
createZeroDirectory.C ENH: use dictionary::get<word>() instead of lookup() in a few places 2018-10-19 09:11:31 +02:00
solverTemplate.C ENH: cleanup of Enum class 2018-10-18 12:57:32 +02:00
solverTemplate.H ENH: upgrade from NamedEnum to Enum (issue #515) 2017-07-03 21:43:33 +02:00