blob: 28383fdb2e37a06d48bbe2e7731e725b2dcd38f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
--
-- File: Aspect_Pixel.cdl
-- Created: 23/03/93
-- Author: BBL
--
---Copyright: MatraDatavision 1993
--
deferred class Pixel from Aspect inherits Storable
---Version: 0.0
---Purpose: This class defines a Pixel.
---Keywords:
---Warning:
---References:
is
Initialize;
---Level: Public
Print( me ; s : in out OStream ) is deferred ;
---Level: Public
---Purpose : Prints the contents of <me> on the stream <s>
---C++: alias "friend Standard_EXPORT Standard_OStream& operator << (Standard_OStream&,const Aspect_Pixel& );"
end Pixel from Aspect;
|