0025266: Debug statements in the source are getting flushed on to the console
[occt.git] / src / IFSelect / IFSelect_Modifier.cdl
1 -- Created on: 1993-08-26
2 -- Created by: Christian CAILLET
3 -- Copyright (c) 1993-1999 Matra Datavision
4 -- Copyright (c) 1999-2014 OPEN CASCADE SAS
5 --
6 -- This file is part of Open CASCADE Technology software library.
7 --
8 -- This library is free software; you can redistribute it and/or modify it under
9 -- the terms of the GNU Lesser General Public License version 2.1 as published
10 -- by the Free Software Foundation, with special exception defined in the file
11 -- OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 -- distribution for complete text of the license and disclaimer of any warranty.
13 --
14 -- Alternatively, this file may be used under the terms of Open CASCADE
15 -- commercial license or contractual agreement.
16
17 deferred class Modifier  from IFSelect  inherits GeneralModifier
18
19     ---Purpose : This class gives a frame for Actions which can work globally
20     --           on a File once completely defined (i.e. afterwards)
21     --           
22     --           Remark : if no Selection is set as criterium, the Modifier is
23     --           set to work and should consider all the content of the Model
24     --           produced.
25
26 uses CString, InterfaceModel, CopyTool, Protocol from Interface, ContextModif
27
28 is
29
30     Initialize (maychangegraph : Boolean);
31     ---Purpose : Calls inherited Initialize, transmits to it the information
32     --           <maychangegraph>
33
34     Perform (me; ctx  : in out ContextModif;
35              target   : InterfaceModel;
36              protocol : Protocol from Interface;
37              TC       : in out CopyTool) is deferred;
38     ---Purpose : This deferred method defines the action specific to each class
39     --           of Modifier. It is called by a ModelCopier, once the Model
40     --           generated and filled. ModelCopier has already checked the
41     --           criteria (Dispatch, Model Rank, Selection) before calling it.
42     --           
43     --           <ctx> detains informations about original data and selection.
44     --           The result of copying, on which modifications are to be done,
45     --           is <target>.
46     --           <TC> allows to run additional copies as required
47     --           
48     --           In case of Error, use methods CCheck from the ContextModif
49     --           to aknowledge an entity Check or a Global Check with messages
50
51 end Modifier;