summaryrefslogtreecommitdiff
path: root/noncore/styles/metal/plugin.h
blob: 545aea91f89d3aa62cddc465d3f4fae9a789afd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#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 *style ( );	
	virtual QString name ( ) const;
	
private:
	ulong ref;
};

#endif