mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-04 11:08:30 +08:00
Mostly duplicated comments were removed and missing ones were moved into dedicated class CDL files. Some more duplicated comments were removed from CDL files. Correction of merge
142 lines
4.5 KiB
Plaintext
142 lines
4.5 KiB
Plaintext
-- Created on: 1993-01-09
|
|
-- Created by: CKY / Contract Toubro-Larsen (Arun MENON)
|
|
-- 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.
|
|
|
|
package IGESBasic
|
|
|
|
|
|
---Purpose : This package represents basic entities from IGES
|
|
|
|
uses
|
|
|
|
Standard,
|
|
TCollection,
|
|
gp,
|
|
TColgp,
|
|
TColStd,
|
|
Message,
|
|
Interface,
|
|
IGESData
|
|
|
|
is
|
|
|
|
class SubfigureDef;
|
|
|
|
class Group;
|
|
|
|
class GroupWithoutBackP;
|
|
|
|
class SingleParent;
|
|
|
|
class ExternalRefFileIndex;
|
|
|
|
class OrderedGroup;
|
|
|
|
class OrderedGroupWithoutBackP;
|
|
|
|
class Hierarchy;
|
|
|
|
class ExternalReferenceFile;
|
|
|
|
class Name;
|
|
|
|
class AssocGroupType;
|
|
|
|
class SingularSubfigure;
|
|
|
|
class ExternalRefFileName;
|
|
|
|
class ExternalRefFile;
|
|
|
|
class ExternalRefName;
|
|
|
|
class ExternalRefLibName;
|
|
|
|
-- Tools for Entities --
|
|
|
|
class ToolSubfigureDef;
|
|
class ToolGroup;
|
|
class ToolGroupWithoutBackP;
|
|
class ToolSingleParent;
|
|
class ToolExternalRefFileIndex;
|
|
class ToolOrderedGroup;
|
|
class ToolOrderedGroupWithoutBackP;
|
|
class ToolHierarchy;
|
|
class ToolExternalReferenceFile;
|
|
class ToolName;
|
|
class ToolAssocGroupType;
|
|
class ToolSingularSubfigure;
|
|
class ToolExternalRefFileName;
|
|
class ToolExternalRefFile;
|
|
class ToolExternalRefName;
|
|
class ToolExternalRefLibName;
|
|
|
|
-- Definition and Exploitation of Entities defined in this Package
|
|
|
|
class Protocol;
|
|
class ReadWriteModule;
|
|
class GeneralModule;
|
|
class SpecificModule;
|
|
|
|
-- The class instantiations :
|
|
|
|
-- class Array1OfHArray1OfInteger instantiates
|
|
-- Array1 from TCollection (HArray1OfInteger from TColStd);
|
|
-- class Array1OfHArray1OfReal instantiates
|
|
-- Array1 from TCollection (HArray1OfReal from TColStd);
|
|
-- class Array1OfHArray1OfXY instantiates
|
|
-- Array1 from TCollection (HArray1OfXY from TColgp);
|
|
-- class Array1OfHArray1OfXYZ instantiates
|
|
-- Array1 from TCollection (HArray1OfXYZ from TColgp);
|
|
class Array2OfHArray1OfReal instantiates
|
|
Array2 from TCollection (HArray1OfReal from TColStd);
|
|
-- class Array1OfHArray1OfIGESEntity instantiates
|
|
-- Array1 from TCollection (HArray1OfIGESEntity from IGESData);
|
|
class Array1OfLineFontEntity instantiates
|
|
Array1 from TCollection (LineFontEntity from IGESData);
|
|
|
|
class HArray1OfHArray1OfInteger instantiates
|
|
-- HArray1 from TCollection (HArray1OfInteger from TColStd,Array1OfHArray1OfInteger);
|
|
JaggedArray from Interface (HArray1OfInteger from TColStd);
|
|
class HArray1OfHArray1OfReal instantiates
|
|
-- HArray1 from TCollection (HArray1OfReal from TColStd,Array1OfHArray1OfReal);
|
|
JaggedArray from Interface (HArray1OfReal from TColStd);
|
|
class HArray1OfHArray1OfXY instantiates
|
|
-- HArray1 from TCollection (HArray1OfXY from TColgp, Array1OfHArray1OfXY);
|
|
JaggedArray from Interface (HArray1OfXY from TColgp);
|
|
class HArray1OfHArray1OfXYZ instantiates
|
|
-- HArray1 from TCollection (HArray1OfXYZ from TColgp, Array1OfHArray1OfXYZ);
|
|
JaggedArray from Interface (HArray1OfXYZ from TColgp);
|
|
|
|
class HArray2OfHArray1OfReal instantiates HArray2 from TCollection
|
|
(HArray1OfReal from TColStd,Array2OfHArray1OfReal);
|
|
|
|
class HArray1OfHArray1OfIGESEntity instantiates
|
|
-- HArray1 from TCollection (HArray1OfIGESEntity from IGESData,Array1OfHArray1OfIGESEntity);
|
|
JaggedArray from Interface (HArray1OfIGESEntity from IGESData);
|
|
|
|
class HArray1OfLineFontEntity instantiates HArray1 from TCollection
|
|
(LineFontEntity from IGESData,Array1OfLineFontEntity);
|
|
|
|
-- Package methods
|
|
|
|
Init;
|
|
---Purpose : Prepares dynqmic data (Protocol, Modules) for this package
|
|
|
|
Protocol returns Protocol from IGESBasic;
|
|
---Purpose : Returns the Protocol for this Package
|
|
|
|
end IGESBasic;
|