Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-09-14 09:14:47

0001 // Created on: 1993-01-11
0002 // Created by: CKY / Contract Toubro-Larsen ( Anand NATRAJAN )
0003 // Copyright (c) 1993-1999 Matra Datavision
0004 // Copyright (c) 1999-2014 OPEN CASCADE SAS
0005 //
0006 // This file is part of Open CASCADE Technology software library.
0007 //
0008 // This library is free software; you can redistribute it and/or modify it under
0009 // the terms of the GNU Lesser General Public License version 2.1 as published
0010 // by the Free Software Foundation, with special exception defined in the file
0011 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
0012 // distribution for complete text of the license and disclaimer of any warranty.
0013 //
0014 // Alternatively, this file may be used under the terms of Open CASCADE
0015 // commercial license or contractual agreement.
0016 
0017 #ifndef _IGESAppli_PartNumber_HeaderFile
0018 #define _IGESAppli_PartNumber_HeaderFile
0019 
0020 #include <Standard.hxx>
0021 
0022 #include <Standard_Integer.hxx>
0023 #include <IGESData_IGESEntity.hxx>
0024 class TCollection_HAsciiString;
0025 
0026 //! defines PartNumber, Type <406> Form <9>
0027 //! in package IGESAppli
0028 //! Attaches a set of text strings that define the common
0029 //! part numbers to an entity being used to represent a
0030 //! physical component
0031 class IGESAppli_PartNumber : public IGESData_IGESEntity
0032 {
0033 
0034 public:
0035   Standard_EXPORT IGESAppli_PartNumber();
0036 
0037   //! This method is used to set the fields of the class
0038   //! PartNumber
0039   //! - nbPropVal : number of property values, always = 4
0040   //! - aGenName  : Generic part number or name
0041   //! - aMilName  : Military Standard (MIL-STD) part number
0042   //! - aVendName : Vendor part number or name
0043   //! - anIntName : Internal part number
0044   Standard_EXPORT void Init(const int                                    nbPropVal,
0045                             const occ::handle<TCollection_HAsciiString>& aGenName,
0046                             const occ::handle<TCollection_HAsciiString>& aMilName,
0047                             const occ::handle<TCollection_HAsciiString>& aVendName,
0048                             const occ::handle<TCollection_HAsciiString>& anIntName);
0049 
0050   //! returns number of property values, always = 4
0051   Standard_EXPORT int NbPropertyValues() const;
0052 
0053   //! returns Generic part number or name
0054   Standard_EXPORT occ::handle<TCollection_HAsciiString> GenericNumber() const;
0055 
0056   //! returns Military Standard (MIL-STD) part number
0057   Standard_EXPORT occ::handle<TCollection_HAsciiString> MilitaryNumber() const;
0058 
0059   //! returns Vendor part number or name
0060   Standard_EXPORT occ::handle<TCollection_HAsciiString> VendorNumber() const;
0061 
0062   //! returns Internal part number
0063   Standard_EXPORT occ::handle<TCollection_HAsciiString> InternalNumber() const;
0064 
0065   DEFINE_STANDARD_RTTIEXT(IGESAppli_PartNumber, IGESData_IGESEntity)
0066 
0067 private:
0068   int                                   theNbPropertyValues;
0069   occ::handle<TCollection_HAsciiString> theGenericNumber;
0070   occ::handle<TCollection_HAsciiString> theMilitaryNumber;
0071   occ::handle<TCollection_HAsciiString> theVendorNumber;
0072   occ::handle<TCollection_HAsciiString> theInternalNumber;
0073 };
0074 
0075 #endif // _IGESAppli_PartNumber_HeaderFile