fix tricky regression noticed by Vyacheslav Tokarev on Google Reader.
[kdelibs.git] / kparts / tests / ghostview.h
blobe164668157d0cd5b91c837bc9a7e5573f4ea8952
1 #ifndef __example_h__
2 #define __example_h__
4 #include <kparts/mainwindow.h>
6 class Shell : public KParts::MainWindow
8 Q_OBJECT
9 public:
10 Shell();
11 virtual ~Shell();
13 void openUrl( const KUrl & url );
15 protected Q_SLOTS:
16 void slotFileOpen();
18 private:
19 KParts::ReadOnlyPart *m_gvpart;
22 #endif