00001 #ifndef TESTKHTML_H 00002 #define TESTKHTML_H 00003 00004 #include <kdebug.h> 00005 #include <khtml_part.h> 00006 00007 class KHTMLPart; 00008 00012 class Dummy : public QObject 00013 { 00014 Q_OBJECT 00015 public: 00016 Dummy( KHTMLPart *part ) : QObject( part ) { m_part = part; }; 00017 00018 public slots: 00019 void doit(); 00020 00021 private: 00022 KHTMLPart *m_part; 00023 }; 00024 00025 #endif