src/postProcessing/functionObjects: Moving the functionObjects into the "functionObjects" namespace

This commit is contained in:
Henry Weller
2016-05-01 14:48:30 +01:00
parent a3aa589263
commit 09262f5273
26 changed files with 375 additions and 146 deletions

View File

@ -104,7 +104,10 @@ Foam::functionObjects::histogram::New
{
if (isA<fvMesh>(obr))
{
return autoPtr<histogram>(new histogram(name, obr, dict));
return autoPtr<histogram>
(
new histogram(name, obr, dict, loadFromFiles)
);
}
else
{