00001 #ifndef MAILAPPLETIMPL_H 00002 #define MAILAPPLETIMPL_H 00003 00004 #include <qpe/taskbarappletinterface.h> 00005 00006 class MailApplet; 00007 00008 class MailAppletImpl : public TaskbarAppletInterface { 00009 00010 public: 00011 MailAppletImpl(); 00012 virtual ~MailAppletImpl(); 00013 00014 QRESULT queryInterface( const QUuid &uuid, QUnknownInterface **iface ); 00015 Q_REFCOUNT 00016 00017 virtual QWidget *applet( QWidget *parent ); 00018 virtual int position() const; 00019 00020 private: 00021 MailApplet *m_mailApplet; 00022 ulong ref; 00023 00024 }; 00025 00026 #endif 00027
1.4.2