summaryrefslogtreecommitdiffstats
path: root/kview/modules/template/kviewtemplate.h
blob: 1d158b05a3aaeec3e8a64e563b3ef0c0b0d93aab (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
/* This file is in the public domain */

// $Id$

#ifndef __kviewtemplate_h
#define __kviewtemplate_h

#include <kparts/plugin.h>

namespace KImageViewer { class Viewer; }

class KViewTemplate : public KParts::Plugin
{
	Q_OBJECT
public:
	KViewTemplate( QObject* parent, const char* name, const QStringList & );
	virtual ~KViewTemplate();

private slots:
	void yourSlot();

private:
	KImageViewer::Viewer * m_pViewer;
};

// vim:sw=4:ts=4:cindent
#endif