summaryrefslogtreecommitdiffstats
path: root/tdeparts/tests/ghostview.h
diff options
context:
space:
mode:
Diffstat (limited to 'tdeparts/tests/ghostview.h')
-rw-r--r--tdeparts/tests/ghostview.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/tdeparts/tests/ghostview.h b/tdeparts/tests/ghostview.h
new file mode 100644
index 000000000..2974ded5e
--- /dev/null
+++ b/tdeparts/tests/ghostview.h
@@ -0,0 +1,22 @@
+#ifndef __example_h__
+#define __example_h__
+
+#include <tdeparts/mainwindow.h>
+
+class Shell : public KParts::MainWindow
+{
+ Q_OBJECT
+public:
+ Shell();
+ virtual ~Shell();
+
+ void openURL( const KURL & url );
+
+protected slots:
+ void slotFileOpen();
+
+private:
+ KParts::ReadOnlyPart *m_gvpart;
+};
+
+#endif