mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-12 11:06:26 +08:00
Redundant keyword 'mutable' removed in CDL files. In IGESConvGeom_GeomBuilder, unused methods MakeXY() and MakeXYZ() removed. Method StepAP214_AutoDesignGroupAssignment::Init() replicating same method of the base class is removed as it causes CDL extraction error after above (seemingly irrelevant) changes.
105 lines
3.4 KiB
Plaintext
105 lines
3.4 KiB
Plaintext
-- Created on: 1997-05-09
|
|
-- Created by: Christian CAILLET
|
|
-- Copyright (c) 1997-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.
|
|
|
|
class Simple from StepData inherits Described from StepData
|
|
|
|
---Purpose : A Simple Entity is defined by a type (which can heve super
|
|
-- types) and a list of parameters
|
|
|
|
uses CString,
|
|
Check from Interface, EntityIterator from Interface,
|
|
ESDescr from StepData,
|
|
Field from StepData, FieldListN from StepData
|
|
|
|
raises InterfaceMismatch
|
|
|
|
is
|
|
|
|
Create (descr : ESDescr) returns Simple;
|
|
---Purpose : Creates a Simple Entity
|
|
|
|
ESDescr (me) returns ESDescr;
|
|
---Purpose : Returns description, as for simple
|
|
|
|
StepType (me) returns CString;
|
|
---Purpose : Returns the recorded StepType (TypeName of its ESDescr)
|
|
|
|
-- inherited
|
|
|
|
IsComplex (me) returns Boolean;
|
|
---Purpose : Returns False
|
|
|
|
|
|
Matches (me; steptype : CString) returns Boolean;
|
|
---Purpose : Tells if a step type is matched by <me>
|
|
-- For a Simple Entity : own type or super type
|
|
-- For a Complex Entity : one of the members
|
|
|
|
As (me; steptype : CString) returns Simple;
|
|
---Purpose : Returns a Simple Entity which matches with a Type in <me> :
|
|
-- For a Simple Entity : me if it matches, else a null handle
|
|
-- For a Complex Entity : the member which matches, else null
|
|
|
|
HasField (me; name : CString) returns Boolean;
|
|
---Purpose : Tells if a Field brings a given name
|
|
|
|
Field (me; name : CString) returns Field
|
|
---Purpose : Returns a Field from its name; read-only
|
|
raises InterfaceMismatch;
|
|
-- raises if no Field for <name>
|
|
---C++ : return const &
|
|
|
|
CField (me : mutable; name : CString) returns Field
|
|
---Purpose : Returns a Field from its name; read or write
|
|
raises InterfaceMismatch;
|
|
-- raises if no Field for <name>
|
|
---C++ : return &
|
|
|
|
-- more specific
|
|
|
|
NbFields (me) returns Integer;
|
|
---Purpose : Returns the count of fields
|
|
|
|
FieldNum (me; num : Integer) returns Field;
|
|
---Purpose : Returns a field from its rank, for read-only use
|
|
---C++ : return const &
|
|
|
|
CFieldNum (me : mutable; num : Integer) returns Field;
|
|
---Purpose : Returns a field from its rank, in order to modify it
|
|
---C++ : return &
|
|
|
|
Fields (me) returns FieldListN;
|
|
---Purpose : Returns the entire field list, read-only
|
|
---C++ : return const &
|
|
|
|
CFields (me : mutable) returns FieldListN;
|
|
---Purpose : Returns the entire field list, read or write
|
|
---C++ : return &
|
|
|
|
--
|
|
|
|
Check (me; ach : in out Check from Interface);
|
|
---Purpose : Fills a Check by using its Description
|
|
|
|
Shared (me; list : in out EntityIterator from Interface);
|
|
---Purpose : Fills an EntityIterator with entities shared by <me>
|
|
|
|
fields
|
|
|
|
thefields : FieldListN;
|
|
|
|
end Simple;
|