mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: adjust some line lengths, doxygen comments
This commit is contained in:
@ -334,15 +334,15 @@ bool Foam::functionObjectList::readFunctionObject
|
||||
|
||||
Foam::functionObjectList::functionObjectList
|
||||
(
|
||||
const Time& t,
|
||||
const Time& runTime,
|
||||
const bool execution
|
||||
)
|
||||
:
|
||||
PtrList<functionObject>(),
|
||||
digests_(),
|
||||
indices_(),
|
||||
time_(t),
|
||||
parentDict_(t.controlDict()),
|
||||
time_(runTime),
|
||||
parentDict_(runTime.controlDict()),
|
||||
stateDictPtr_(),
|
||||
execution_(execution),
|
||||
updated_(false)
|
||||
@ -351,7 +351,7 @@ Foam::functionObjectList::functionObjectList
|
||||
|
||||
Foam::functionObjectList::functionObjectList
|
||||
(
|
||||
const Time& t,
|
||||
const Time& runTime,
|
||||
const dictionary& parentDict,
|
||||
const bool execution
|
||||
)
|
||||
@ -359,7 +359,7 @@ Foam::functionObjectList::functionObjectList
|
||||
PtrList<functionObject>(),
|
||||
digests_(),
|
||||
indices_(),
|
||||
time_(t),
|
||||
time_(runTime),
|
||||
parentDict_(parentDict),
|
||||
stateDictPtr_(),
|
||||
execution_(execution),
|
||||
|
||||
@ -130,7 +130,7 @@ public:
|
||||
|
||||
//- Construct from Time, a dictionary with "functions" entry
|
||||
// and the execution setting.
|
||||
// \param[in] t - the other Time instance to construct from
|
||||
// \param[in] runTime - the other Time instance to construct from
|
||||
// \param[in] parentDict - the parent dictionary containing
|
||||
// a "functions" entry, which can either be a list or a dictionary
|
||||
// of functionObject specifications.
|
||||
|
||||
Reference in New Issue
Block a user