blob: 75ec607205c7a5cc93da91c5b9375f87d36ede2e (
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
|
/* $Id$ */
#ifndef __plugin_domtreeviewer_h
#define __plugin_domtreeviewer_h
#include <kparts/plugin.h>
// #include <klibloader.h>
class DOMTreeWindow;
class KURL;
class PluginDomtreeviewer : public KParts::Plugin
{
Q_OBJECT
TQ_OBJECT
public:
PluginDomtreeviewer( TQObject* tqparent, const char* name,
const TQStringList & );
virtual ~PluginDomtreeviewer();
public slots:
void slotShowDOMTree();
void slotDestroyed();
private:
DOMTreeWindow* m_dialog;
};
#endif
|