mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-05-21 10:55:33 +03:00
19 lines
415 B
Plaintext
Executable File
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;
|
|
}
|