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