New import/export framework

Cyrille Berger cyb at lepi.org
Mon Sep 13 10:48:44 CEST 2004


Hello,

I was looking around the magick import :
- I think it would be a good idea to get ride of the dependence upon magick
- it would be nice to be able to expend it via modules

So I suggest the following base class :

class ImportExport {
public:
 virtual KisImageSP import(KURL ) { return 0; };
 virtual void export(KURL, KisImageSP) { };
 virtual bool importEnable() { return false; };
 virtual bool exportEnable() { return false; };
 virtual QStringList fileFormat();
};

What do you think ?
-- 
--- Cyrille Berger ---


More information about the kimageshop mailing list