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

// $Id$

#ifndef __kviewtemplate_h
#define __kviewtemplate_h

#include <tdeparts/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