blob: 03470b3d1e39c17c8b5fe0ba6b50731ad6162698 (
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 <kparts/plugin.h>
namespace KImageViewer { class Viewer; }
class KViewTemplate : public KParts::Plugin
{
Q_OBJECT
TQ_OBJECT
public:
KViewTemplate( TQObject* tqparent, const char* name, const TQStringList & );
virtual ~KViewTemplate();
private slots:
void yourSlot();
private:
KImageViewer::Viewer * m_pViewer;
};
// vim:sw=4:ts=4:cindent
#endif
|