mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-25 17:43:48 +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.
73 lines
3.2 KiB
Plaintext
73 lines
3.2 KiB
Plaintext
-- Created on: 1994-03-21
|
|
-- Created by: Christian CAILLET
|
|
-- Copyright (c) 1994-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.
|
|
|
|
deferred generic class ModelModifier from IFSelect
|
|
(Model as InterfaceModel; Proto as Protocol from Interface)
|
|
inherits Modifier
|
|
|
|
---Purpose : Allows to precise the frame work for Model Modifiers able to
|
|
-- run with an Interface (such as STEP, VDA, IGES ...)
|
|
--
|
|
-- Acts as a Modifier but properly casts Model and Protocol
|
|
-- according to each Interface, and refuses to work if cast
|
|
-- has failed (i.e. if it is not used in good context)
|
|
--
|
|
-- Then, it is finer to make specific Model Modifier inherit
|
|
-- from an instantiated ModelModifier, instead of Modifier itself
|
|
-- (though it is not mandatory)
|
|
--
|
|
-- For each Interface on which Model Modifiers have to be defined,
|
|
-- The way to follow is firstly to instantiate ModelModifier with
|
|
-- its specific data :
|
|
-- Model is the InterfaceModel specific to the considered norm
|
|
-- Then to define the various classes which inherit from it and
|
|
-- define their method Perform
|
|
|
|
uses CString, InterfaceModel, Protocol from Interface, CopyTool, ContextModif
|
|
|
|
is
|
|
|
|
Initialize (maychangegraph : Boolean);
|
|
---Purpose : Calls inherited Initialize, transmits to it the information
|
|
-- <maychangegraph>
|
|
|
|
Perform (me; ctx : in out ContextModif;
|
|
target : InterfaceModel;
|
|
protocol : Protocol from Interface;
|
|
TC : in out CopyTool);
|
|
---Purpose : The inherited Perform does the required cast (and refuses to
|
|
-- go further if cast has failed) then calls the instantiated
|
|
-- Performing
|
|
|
|
PerformProtocol (me; ctx : in out ContextModif;
|
|
target : Model;
|
|
proto : Proto;
|
|
TC : in out CopyTool) is virtual;
|
|
---Purpose : Specific Perform with Protocol. It is defined to let the
|
|
-- Protocol unused and to call Performing without Protocol
|
|
-- (most current case). It can be redefined if specific action
|
|
-- requires Protocol.
|
|
|
|
Performing (me; ctx : in out ContextModif;
|
|
target : Model;
|
|
TC : in out CopyTool) is deferred;
|
|
---Purpose : Specific Perform, without Protocol. If Performing with
|
|
-- Protocol is redefined, Performing without Protocol must
|
|
-- though be defined to do nothing (not called, but demanded
|
|
-- by the linker)
|
|
|
|
end ModelModifier;
|