blob: bf6a204cd887af3124b77dae7f9ed69fcbbe67cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include <StdFail_NotDone.hxx>
inline Standard_Boolean IntAna_QuadQuadGeo::IsDone() const {
return(done);
}
inline IntAna_ResultType IntAna_QuadQuadGeo::TypeInter() const {
if(!done) {StdFail_NotDone::Raise();}
return(typeres);
}
inline Standard_Integer IntAna_QuadQuadGeo::NbSolutions() const {
if(!done) {StdFail_NotDone::Raise();}
return(nbint);
}
|