0023309: The 'then' statement is equivalent to the 'else' statement in TopOpeBRep_Edg...
[occt.git] / src / ImageUtility / ImageUtility_XWD.cdl
CommitLineData
b311480e 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
7fd59977 5--
b311480e 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.
7fd59977 10--
b311480e 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.
7fd59977 13--
b311480e 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
7fd59977 21
22class XWD from ImageUtility
23
24 ---Version: 0.0
25
26 ---Purpose: Performs a "xwd" and creates a XAlienImage and an Image
27
28 ---Keywords:
29 ---Warning:
30 ---References:
31
32uses
33 XAlienImage from AlienImage,
34 File from OSD,
35 Image from Image
36
37raises
38 TypeMismatch from Standard
39
40is
41 Create returns XWD from ImageUtility ;
42 ---Level: Internal
43 ---Purpose: Create a XWD object .
44
45 XWD( me : in out ; xwdOptions : CString from Standard = "" )
46 returns Boolean from Standard
47 is static;
48 ---Level: Internal
49 ---Purpose: execute a Spawn "xwd xwudOptions -out aTmpFile" .
50
51 XAlienImage( me )
52 returns XAlienImage from AlienImage
53 is static;
54 ---Level: Internal
55 ---Purpose: returns the XAlienImage created from "xwd".
56
57 Image( me )
58 returns Image from Image
59 is static;
60 ---Level: Internal
61 ---Purpose: returns the Image created from "xwd".
62
63fields
64 myXAlienImage : XAlienImage from AlienImage;
65 myImage : Image from Image;
66end ;