openfoam/applications/utilities/postProcessing
Mark Olesen c6520033c9 ENH: rationalize dictionary access methods
- use keyType::option enum to consolidate searching options.
  These enumeration names should be more intuitive to use
  and improve code readability.

    Eg,   lookupEntry(key, keyType::REGEX);
    vs    lookupEntry(key, false, true);

  or

    Eg,   lookupEntry(key, keyType::LITERAL_RECURSIVE);
    vs    lookupEntry(key, true, false);

- new findEntry(), findDict(), findScoped() methods with consolidated
  search options for shorter naming and access names more closely
  aligned with other components. Behave simliarly to the
  methods lookupEntryPtr(), subDictPtr(), lookupScopedEntryPtr(),
  respectively. Default search parameters consistent with lookupEntry().

    Eg, const entry* e = dict.findEntry(key);
    vs  const entry* e = dict.lookupEntryPtr(key, false, true);

- added '*' and '->' dereference operators to dictionary searchers.
2018-10-15 16:16:12 +02:00
..
dataConversion ENH: use dictionary::readEntry for detection of input errors (#762, #1033) 2018-10-05 10:15:13 +02:00
graphics COMP: include fileFormats for paraview plugins 2018-10-05 16:50:23 +02:00
lagrangian ENH: Updated config for release v1806 2018-06-28 12:56:00 +01:00
lumped ENH: change argList get<> and getList<> from read<>, readList<> 2018-08-09 11:27:36 +02:00
miscellaneous ENH: rationalize dictionary access methods 2018-10-15 16:16:12 +02:00
noise COMP: Allwmake: pass through targetType 2018-08-02 10:18:59 +01:00
postProcess ENH: use dictionary::readEntry for detection of input errors (#762, #1033) 2018-10-05 10:15:13 +02:00