diff options
Diffstat (limited to 'kview/kviewcanvas/test/test.h')
-rw-r--r-- | kview/kviewcanvas/test/test.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/kview/kviewcanvas/test/test.h b/kview/kviewcanvas/test/test.h new file mode 100644 index 00000000..b6a85188 --- /dev/null +++ b/kview/kviewcanvas/test/test.h @@ -0,0 +1,25 @@ +#ifndef KIMAGEVIEWERTEST_H +#define KIMAGEVIEWERTEST_H + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + +#include <kapplication.h> +#include <kparts/mainwindow.h> + +namespace KImageViewer { class Canvas; }; + +class KImageViewerTest : public KParts::MainWindow +{ + Q_OBJECT +public: + KImageViewerTest(); + virtual ~KImageViewerTest(); + void load(const KURL& url); + +private: + KImageViewer::Canvas *m_part; +}; + +#endif // KIMAGEVIEWERTEST_H |