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