You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
434 B
27 lines
434 B
/* 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;
|
|
};
|
|
#endif
|