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.
tdegraphics/kview/modules/template/kviewtemplate.h

27 lines
435 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
{
TQ_OBJECT
public:
KViewTemplate( TQObject* parent, const char* name, const TQStringList & );
virtual ~KViewTemplate();
private slots:
void yourSlot();
private:
KImageViewer::Viewer * m_pViewer;
};
#endif