openfoam/applications/utilities/mesh/manipulation/checkMesh/writeFields.H
Mark Olesen 37e248c74b STYLE: consistent use of wordHashSet instead of HashSet<word>
- the wordHashSet typedef is always available when HashSet has been
  included.

- use default HashTable key (word) instead of explicitly mentioning it
2018-02-22 11:19:47 +01:00

11 lines
144 B
C++

#include "fvMesh.H"
namespace Foam
{
void writeFields
(
const fvMesh& mesh,
const wordHashSet& selectedFields
);
}