blob: 40f73944eda06a23ae34366e42095e38721ffeba (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// math_Gauss.lxx
// lpa, le 28/01/92
inline Standard_Boolean math_Gauss::IsDone() const { return Done; }
inline Standard_OStream& operator<<(Standard_OStream& o, const math_Gauss& mG)
{
mG.Dump(o);
return o;
}
|