mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-15 13:48:57 +08:00
25 lines
605 B
Plaintext
Executable File
25 lines
605 B
Plaintext
Executable File
-- File: ShapeProcess_Operator.cdl
|
|
-- Created: Tue Aug 22 12:06:13 2000
|
|
-- Author: Andrey BETENEV
|
|
-- <abv@doomox.nnov.matra-dtv.fr>
|
|
---Copyright: Matra Datavision 2000
|
|
|
|
|
|
deferred class Operator from ShapeProcess inherits TShared from MMgt
|
|
|
|
---Purpose: Abstract Operator class providing a tool to
|
|
-- perform an operation on Context
|
|
|
|
uses
|
|
|
|
Context from ShapeProcess
|
|
|
|
is
|
|
|
|
Perform (me: mutable; context: Context from ShapeProcess)
|
|
returns Boolean is deferred;
|
|
---Purpose: Performs operation and eventually records
|
|
-- changes in the context
|
|
|
|
end Operator;
|