Loading...
Searching...
No Matches
setRootCase.H
Go to the documentation of this file.
1// Construct from (int argc, char* argv[]),
2// - use argList::argsMandatory() to decide on checking command arguments.
3// - check validity of the options
4
5Foam::argList args(argc, argv);
6if (!args.checkRootCase())
7{
8 Foam::FatalError.exit();
9}
10
11// User can also perform checks on otherwise optional arguments.
12// Eg,
13//
14// if (!args.check(true, false))
15// {
16// Foam::FatalError.exit();
17// }
18
19// Force dlOpen of FOAM_DLOPEN_LIBS (principally for Windows applications)
20#include "foamDlOpenLibs.H"
Extract command arguments and options from the supplied argc and argv parameters.
Definition argList.H:119
error FatalError
Error stream (stdout output on all processes), with additional 'FOAM FATAL ERROR' header text and sta...
Foam::argList args(argc, argv)