0023309: The 'then' statement is equivalent to the 'else' statement in TopOpeBRep_Edg...
[occt.git] / src / ImageUtility / ImageUtility_XPR.cdl
1 -- Created on: 1993-03-23
2 -- Created by: BBL,JLF
3 -- Copyright (c) 1993-1999 Matra Datavision
4 -- Copyright (c) 1999-2012 OPEN CASCADE SAS
5 --
6 -- The content of this file is subject to the Open CASCADE Technology Public
7 -- License Version 6.5 (the "License"). You may not use the content of this file
8 -- except in compliance with the License. Please obtain a copy of the License
9 -- at http://www.opencascade.org and read it completely before using this file.
10 --
11 -- The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
12 -- main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
13 --
14 -- The Original Code and all software distributed under the License is
15 -- distributed on an "AS IS" basis, without warranty of any kind, and the
16 -- Initial Developer hereby disclaims all such warranties, including without
17 -- limitation, any warranties of merchantability, fitness for a particular
18 -- purpose or non-infringement. Please see the License for the specific terms
19 -- and conditions governing the rights and limitations under the License.
20
21
22 class XPR from ImageUtility
23
24         ---Version: 0.0
25
26         ---Purpose: Performs a "xpr" with a XAlienImage build
27         --               from any Image , any AlienImage .
28
29         ---Keywords:
30         ---Warning:
31         ---References:
32
33 uses
34         AlienUserImage  from AlienImage,
35         XAlienImage     from AlienImage,
36         File            from OSD,
37         Image           from Image
38
39 raises
40         TypeMismatch    from Standard
41
42 is
43         XPR ( myclass ; aImage          : in Image from Image; 
44                         aName           : CString from Standard;
45                         xprOptions      : CString from Standard 
46                                                 = "" ) ;
47         ---Level: Internal
48           ---Purpose: Write content of a Image object to aTmpFile and
49           --          execute a Spawn "xpr xprOptions aTmpFile | lpr &" .
50
51         XPR ( myclass ; aAlienUserImage : in AlienUserImage from AlienImage; 
52                         aName           : CString from Standard ;
53                         xprOptions      : CString from Standard 
54                                                 = "" ) ;
55         ---Level: Internal
56           ---Purpose: Write content of a  AlienImage object to aTmpFile and
57           --          execute a Spawn "xpr xprOptions aTmpFile| lpr  &" .
58
59         XPR ( myclass ; aXAlienImage    : in XAlienImage from AlienImage ;
60                         xprOptions      : CString from Standard 
61                                                 = "" ) ;
62         ---Level: Internal
63           ---Purpose: Write content of a  XAlienImage object to aTmpFile and
64           --          execute a Spawn "xpr xprOptions aTmpFile| lpr  &" .
65
66         XPR ( myclass ; aFile           : in File from OSD ;
67                         xprOptions      : CString from Standard 
68                                                 = "" ) ;
69         ---Level: Internal
70           ---Purpose: execute a Spawn 
71           --    "xpr xprOptions /aFile.SystemName()/ | lpr &" .
72
73         XPR ( myclass ; aFileName       : CString from Standard ;
74                         xprOptions      : CString from Standard 
75                                                 = "" ) ;
76         ---Level: Internal
77           ---Purpose: execute a Spawn "xpr xprOptions aFileName | lpr &" .
78
79
80
81 end ;