Fresco/Fresco-IDL/share/idl/Fresco ImageKit.idl,1.5,1.6
Tobias Hunger <[email protected]>
| Newsgroups | gmane.comp.video.fresco.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvs/fresco/Fresco/Fresco-IDL/share/idl/Fresco
In directory purcel:/tmp/cvs-serv27814/Fresco-IDL/share/idl/Fresco
Modified Files:
ImageKit.idl
Log Message:
Renamed the methods on the ImageKit
from empty() to create_empty_raster() and
from create() to create_raster() to be more in sync with the nameing scheme of
the other Kits.
Index: ImageKit.idl
===================================================================
RCS file: /cvs/fresco/Fresco/Fresco-IDL/share/idl/Fresco/ImageKit.idl,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- ImageKit.idl 29 May 2002 06:57:01 -0000 1.5
+++ ImageKit.idl 25 Jan 2003 12:43:48 -0000 1.6
@@ -42,14 +42,14 @@
interface ImageKit : Kit
{
//. Create a empty Raster.
- Raster empty();
+ Raster create_empty_raster();
//. Create a Raster from a file. 'rasterpath' from Berlin's config file
//. is prepended! If the file is not found a the ImageKit
//. falls back to 'berlin-128.png' in 'rasterpath'.
// FIXME: This should throw an exception if the file is not found.
// The current behaviour is not useful for real-world
// applications.
- Raster create(in string file);
+ Raster create_raster(in string file);
};
};