summaryrefslogtreecommitdiffstats
path: root/kview/modules/template/kviewtemplate.h
blob: 5d49890e27bd1d2eb87a09363f5b46721da4d7b4 (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( TQObject* parent, const char* name, const TQStringList & );
	virtual ~KViewTemplate();

private slots:
	void yourSlot();

private:
	KImageViewer::Viewer * m_pViewer;
};

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