summaryrefslogtreecommitdiff
path: root/noncore/styles/metal/plugin.h
blob: f61c833c3aae5461fdfed675c43a56eca803b729 (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 __OPIE_METAL_PLUGIN_H__
#define __OPIE_METAL_PLUGIN_H__

#include <qpe/styleinterface.h>


class MetalInterface : public StyleInterface {
public:
	MetalInterface ( );
	virtual ~MetalInterface ( );
	
	QRESULT queryInterface ( const QUuid &, QUnknownInterface ** );
	Q_REFCOUNT
        	
	virtual QStyle *create ( );
	
	virtual QString description ( );
	virtual QString name ( );
	virtual QCString key ( );
	
	virtual unsigned int version ( );
	
private:
	ulong ref;
};

#endif