summaryrefslogtreecommitdiff
path: root/src/IGESData/IGESData_IGESType.cxx
blob: 12e5aeebe71b0834208840f47a7fcc0579c96f64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <IGESData_IGESType.ixx>



   IGESData_IGESType::IGESData_IGESType ()  {  thetype = 0; theform = 0;  }

   IGESData_IGESType::IGESData_IGESType
      (const Standard_Integer atype, const Standard_Integer aform)
      {  thetype = atype; theform = aform;  }

    Standard_Integer IGESData_IGESType::Type () const    {  return thetype;  }

    Standard_Integer IGESData_IGESType::Form () const    {  return theform;  }

    Standard_Boolean IGESData_IGESType::IsEqual (const IGESData_IGESType& other) const
      {  return (thetype == other.Type() && theform == other.Form());  }

    void IGESData_IGESType::Nullify ()      {  thetype = 0; theform = 0;  }