localIOdictionary: Added missing constructor for surfaceRedistributePar
This commit is contained in:
@ -41,6 +41,24 @@ Foam::localIOdictionary::localIOdictionary
|
||||
}
|
||||
|
||||
|
||||
Foam::localIOdictionary::localIOdictionary
|
||||
(
|
||||
const IOobject& io,
|
||||
const dictionary& dict
|
||||
)
|
||||
:
|
||||
IOdictionary(io, typeName)
|
||||
{
|
||||
if (!readHeaderOk(IOstream::ASCII, typeName))
|
||||
{
|
||||
dictionary::operator=(dict);
|
||||
}
|
||||
|
||||
// For if MUST_READ_IF_MODIFIED
|
||||
addWatch();
|
||||
}
|
||||
|
||||
|
||||
Foam::localIOdictionary::localIOdictionary
|
||||
(
|
||||
const IOobject& io,
|
||||
|
||||
@ -61,6 +61,9 @@ public:
|
||||
//- Construct given an IOobject and actual type name
|
||||
localIOdictionary(const IOobject& io);
|
||||
|
||||
//- Construct given an IOobject and dictionary
|
||||
localIOdictionary(const IOobject&, const dictionary&);
|
||||
|
||||
//- Construct given an IOobject and actual type name
|
||||
localIOdictionary(const IOobject& io, const word& actualType);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user