mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-08 14:46:55 +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.
95 lines
3.4 KiB
Plaintext
95 lines
3.4 KiB
Plaintext
-- Created on: 1999-07-19
|
|
-- Created by: Denis PASCAL
|
|
-- Copyright (c) 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 class Driver from TFunction inherits TShared from MMgt
|
|
|
|
---Purpose: This driver class provide services around function
|
|
-- execution. One instance of this class is built for
|
|
-- the whole session. The driver is bound to the
|
|
-- DriverGUID in the DriverTable class.
|
|
-- It allows you to create classes which inherit from
|
|
-- this abstract class.
|
|
-- These subclasses identify the various algorithms
|
|
-- which can be applied to the data contained in the
|
|
-- attributes of sub-labels of a model.
|
|
-- A single instance of this class and each of its
|
|
-- subclasses is built for the whole session.
|
|
uses
|
|
|
|
Logbook from TFunction,
|
|
Label from TDF,
|
|
LabelList from TDF
|
|
|
|
is
|
|
|
|
Initialize returns Driver from TFunction;
|
|
|
|
|
|
---Purpose: initialisation of the driver
|
|
-- ============================
|
|
|
|
Init(me : mutable; L : Label from TDF);
|
|
---Purpose: Initializes the label L for this function prior to its execution.
|
|
|
|
Label(me) returns Label from TDF;
|
|
---C++: inline
|
|
---Purpose: Returns the label of the driver for this function.
|
|
|
|
Validate(me; log : in out Logbook from TFunction)
|
|
is virtual;
|
|
---Purpose: Validates labels of a function in <log>.
|
|
-- This function is the one initialized in this function driver.
|
|
-- Warning
|
|
-- In regeneration mode, the solver must call this
|
|
-- method even if the function is not executed.
|
|
|
|
|
|
---Purpose: execution of function
|
|
-- =====================
|
|
|
|
MustExecute (me; log : Logbook from TFunction)
|
|
---Purpose: Analyzes the labels in the logbook log.
|
|
-- Returns true if attributes have been modified.
|
|
-- If the function label itself has been modified, the function must be executed.
|
|
returns Boolean from Standard
|
|
is virtual;
|
|
|
|
Execute (me; log : in out Logbook from TFunction)
|
|
---Purpose: Executes the function in this function driver and
|
|
-- puts the impacted labels in the logbook log.
|
|
returns Integer from Standard
|
|
is deferred;
|
|
|
|
|
|
---Purpose: arguments & results of functions
|
|
-- ================================
|
|
|
|
Arguments (me; args : out LabelList from TDF)
|
|
---Purpose: The method fills-in the list by labels,
|
|
-- where the arguments of the function are located.
|
|
is virtual;
|
|
|
|
Results (me; res : out LabelList from TDF)
|
|
---Purpose: The method fills-in the list by labels,
|
|
-- where the results of the function are located.
|
|
is virtual;
|
|
|
|
fields
|
|
|
|
myLabel : Label from TDF;
|
|
|
|
end Driver;
|