1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-05-21 10:55:33 +03:00
occt/src/math/math_GaussSingleIntegration.lxx
2012-03-05 19:23:40 +04:00

19 lines
415 B
Plaintext
Executable File

// File math_GaussSingleIntegration.lxx
#include <StdFail_NotDone.hxx>
inline Standard_OStream& operator<<(Standard_OStream& o,
const math_GaussSingleIntegration& G)
{
G.Dump(o);
return o;
}
inline Standard_Boolean math_GaussSingleIntegration::IsDone() const
{ return Done; }
inline Standard_Real math_GaussSingleIntegration::Value() const{
StdFail_NotDone_Raise_if(!Done, " ");
return Val;
}