summaryrefslogtreecommitdiff
path: root/noncore/graphics/opie-eye/slave/png_slave.h
Unidiff
Diffstat (limited to 'noncore/graphics/opie-eye/slave/png_slave.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/graphics/opie-eye/slave/png_slave.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/noncore/graphics/opie-eye/slave/png_slave.h b/noncore/graphics/opie-eye/slave/png_slave.h
new file mode 100644
index 0000000..408bfc4
--- a/dev/null
+++ b/noncore/graphics/opie-eye/slave/png_slave.h
@@ -0,0 +1,21 @@
1/*
2 * GPLv2 zecke@handhelds.org
3 */
4#ifndef PNG_SLAVE_IMPL_H
5#define PNG_SLAVE_IMPL_H
6
7#include "slaveiface.h"
8
9class QString;
10class QPixmap;
11class PNGSlave : public SlaveInterface {
12public:
13 PNGSlave();
14 ~PNGSlave();
15
16 QString iconViewName( const QString& );
17 QString fullImageInfo( const QString& );
18 QPixmap pixmap( const QString&, int, int );
19};
20
21#endif