// Created by: CKY / Contract Toubro-Larsen // Copyright (c) 1993-1999 Matra Datavision // Copyright (c) 1999-2014 OPEN CASCADE SAS // // This file is part of Open CASCADE Technology software library. // // This library is free software; you can redistribute it and/or modify it under // the terms of the GNU Lesser General Public License version 2.1 as published // by the Free Software Foundation, with special exception defined in the file // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT // distribution for complete text of the license and disclaimer of any warranty. // // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. //-------------------------------------------------------------------- //-------------------------------------------------------------------- #include #include #include IMPLEMENT_STANDARD_RTTIEXT(IGESAppli_PartNumber,IGESData_IGESEntity) IGESAppli_PartNumber::IGESAppli_PartNumber () { } void IGESAppli_PartNumber::Init (const Standard_Integer nbPropVal, const Handle(TCollection_HAsciiString)& aGenName, const Handle(TCollection_HAsciiString)& aMilName, const Handle(TCollection_HAsciiString)& aVendName, const Handle(TCollection_HAsciiString)& anIntName) { theNbPropertyValues = nbPropVal; theGenericNumber = aGenName; theMilitaryNumber = aMilName; theVendorNumber = aVendName; theInternalNumber = anIntName; InitTypeAndForm(406,9); } Standard_Integer IGESAppli_PartNumber::NbPropertyValues () const { return theNbPropertyValues; } Handle(TCollection_HAsciiString) IGESAppli_PartNumber::GenericNumber () const { return theGenericNumber; } Handle(TCollection_HAsciiString) IGESAppli_PartNumber::MilitaryNumber () const { return theMilitaryNumber; } Handle(TCollection_HAsciiString) IGESAppli_PartNumber::VendorNumber () const { return theVendorNumber; } Handle(TCollection_HAsciiString) IGESAppli_PartNumber::InternalNumber () const { return theInternalNumber; }