mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: Updated notImplemented(...)->NotImplemented messages
This commit is contained in:
@ -75,7 +75,7 @@ public:
|
||||
//- Clone
|
||||
autoPtr<searchableSurfaceModifier> clone() const
|
||||
{
|
||||
notImplemented("autoPtr<searchableSurfaceModifier> clone() const");
|
||||
NotImplemented;
|
||||
return autoPtr<searchableSurfaceModifier>(NULL);
|
||||
}
|
||||
|
||||
|
||||
@ -99,7 +99,7 @@ public:
|
||||
//- Clone
|
||||
autoPtr<searchableSurfaceModifier> clone() const
|
||||
{
|
||||
notImplemented("autoPtr<searchableSurfaceModifier> clone() const");
|
||||
NotImplemented;
|
||||
return autoPtr<searchableSurfaceModifier>(NULL);
|
||||
}
|
||||
|
||||
|
||||
@ -95,7 +95,7 @@ public:
|
||||
//- Clone
|
||||
autoPtr<searchableSurfaceModifier> clone() const
|
||||
{
|
||||
notImplemented("autoPtr<searchableSurfaceModifier> clone() const");
|
||||
NotImplemented;
|
||||
return autoPtr<searchableSurfaceModifier>(NULL);
|
||||
}
|
||||
|
||||
|
||||
@ -447,10 +447,7 @@ public:
|
||||
//- Correct for topo change.
|
||||
void updateMesh(const mapPolyMesh&)
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"mapDistributeBase::updateMesh(const mapPolyMesh&)"
|
||||
);
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
// Member Operators
|
||||
|
||||
@ -102,14 +102,7 @@ void Foam::patchTransformedInterpolation::interpolate
|
||||
pointScalarField&
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"void Foam::patchTransformedInterpolation::interpolate"
|
||||
"("
|
||||
"const volScalarField&"
|
||||
"pointScalarField&"
|
||||
")"
|
||||
);
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -32,13 +32,7 @@ void Foam::fv::directionalPressureGradientExplicitSource::writeData
|
||||
Ostream& os
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"void Foam::fv::directionalPressureGradientExplicitSource::writeData"
|
||||
"("
|
||||
"Ostream&"
|
||||
") const"
|
||||
);
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -138,11 +138,7 @@ public:
|
||||
//- Update local data for topology changes
|
||||
virtual void updateMesh(const mapPolyMesh&)
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"displacementMotionSolverMeshMover::updateMesh"
|
||||
"(const mapPolyMesh&)"
|
||||
);
|
||||
NotImplemented;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
@ -89,7 +89,7 @@ Foam::point Foam::bezier::position(const scalar lambda) const
|
||||
|
||||
Foam::scalar Foam::bezier::length() const
|
||||
{
|
||||
notImplemented("bezier::length() const");
|
||||
NotImplemented;
|
||||
return 1.0;
|
||||
}
|
||||
|
||||
|
||||
@ -209,11 +209,7 @@ public:
|
||||
//- Does any part of the surface overlap the supplied bound box?
|
||||
virtual bool overlaps(const boundBox& bb) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"searchableCone::overlaps(const boundBox&) const"
|
||||
);
|
||||
|
||||
NotImplemented;
|
||||
return false;
|
||||
}
|
||||
|
||||
@ -279,7 +275,7 @@ public:
|
||||
|
||||
virtual bool writeData(Ostream&) const
|
||||
{
|
||||
notImplemented("searchableCone::writeData(Ostream&) const");
|
||||
NotImplemented;
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
||||
@ -207,11 +207,7 @@ Foam::pointIndexHit Foam::searchableRotatedBox::findNearest
|
||||
point& linePoint
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"searchableRotatedBox::findNearest"
|
||||
"(const linePointRef&, treeBoundBox&, point&)"
|
||||
);
|
||||
NotImplemented;
|
||||
return pointIndexHit();
|
||||
}
|
||||
|
||||
|
||||
@ -245,10 +245,7 @@ public:
|
||||
|
||||
bool writeData(Ostream&) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"searchableRotatedBox::writeData(Ostream&) const"
|
||||
);
|
||||
NotImplemented;
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user