00001 /* 00002 * GPLv2 zecke@handhelds.org 00003 */ 00004 #ifndef PNG_SLAVE_IMPL_H 00005 #define PNG_SLAVE_IMPL_H 00006 00007 #include "slaveiface.h" 00008 00009 class QString; 00010 class QPixmap; 00011 class PNGSlave : public SlaveInterface { 00012 public: 00013 PNGSlave(); 00014 ~PNGSlave(); 00015 00016 QString iconViewName( const QString& ); 00017 QString fullImageInfo( const QString& ); 00018 QPixmap pixmap( const QString&, int, int ); 00019 }; 00020 00021 #endif
1.4.2