summaryrefslogtreecommitdiff
path: root/noncore/unsupported/mail2/bend/bendimpl.h
blob: c883f1bac1b3201507d0112126c906e60000a90e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#ifndef BENDIMPL_H
#define BENDIMPL_H

#include <qpe/taskbarappletinterface.h>

class BenD;

class BenDImpl : public TaskbarAppletInterface
{
public:
	BenDImpl();
	virtual ~BenDImpl();

	QRESULT queryInterface(const QUuid &uuid, QUnknownInterface **iface);
	Q_REFCOUNT

	virtual QWidget *applet(QWidget *parent);
	virtual int position() const;

private:
	BenD *_benD;
	ulong ref;

};

#endif