checkConstantOption.H
Go to the documentation of this file.
1 // Unless -constant is present, skip startTime if it is "constant"
2 
3 if
4 (
5  !args.found("constant")
6  && (startTime < Times.size()-1)
7  && (Times[startTime].name() == "constant")
8 )
9 {
10  ++startTime;
11 }
Foam::name
word name(const expressions::valueTypeCode typeCode)
A word representation of a valueTypeCode. Empty for INVALID.
Definition: exprTraits.C:59
startTime
Foam::label startTime
Definition: checkTimeOptions.H:1
args
Foam::argList args(argc, argv)
Foam::argList::found
bool found(const word &optName) const
Return true if the named option is found.
Definition: argListI.H:178