summaryrefslogtreecommitdiff
path: root/inc/Blend_CSWalking.lxx
blob: 67c0902cfeedba0f25ba3c11ce7f6aaf48a95977 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <StdFail_NotDone.hxx>

inline Standard_Boolean Blend_CSWalking::IsDone () const
{
  return done;
}

inline const Handle(TheLine)& Blend_CSWalking::Line () const
{
  if (!done) {StdFail_NotDone::Raise();}
  return line;
}