mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- argList::envExecutable() static method.
This is identical to getEnv("FOAM_EXECUTABLE"), where the name of
the executable has typically been set from the argList construction.
Provides a singleton access to this value from locations that
do not have knowledge of the originating command args (argList).
This is a similar rationale as for the argList::envGlobalPath() static.
- additional argList::envRelativePath() static method.
- make -dry-run handling more central and easier to use by adding into
argList itself.
STYLE: drop handling of -srcDoc (v1706 option)
- replaced with -doc-source for 1712 and never used much anyhow
23 lines
366 B
C++
23 lines
366 B
C++
#ifndef faCFD_H
|
|
#define faCFD_H
|
|
|
|
#include "Time.H"
|
|
#include "faMesh.H"
|
|
#include "areaFields.H"
|
|
#include "edgeFields.H"
|
|
#include "faMatrices.H"
|
|
#include "fam.H"
|
|
#include "fac.H"
|
|
#include "volSurfaceMapping.H"
|
|
|
|
#include "OSspecific.H"
|
|
#include "argList.H"
|
|
#include "timeSelector.H"
|
|
|
|
#ifndef namespaceFoam
|
|
#define namespaceFoam
|
|
using namespace Foam;
|
|
#endif
|
|
|
|
#endif
|