blob: 18dace8bd6d2d30a442c617dc66098bd1d4e44c8 (
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
|
#ifndef KIMAGEVIEWERTEST_H
#define KIMAGEVIEWERTEST_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <tdeapplication.h>
#include <tdeparts/mainwindow.h>
namespace KImageViewer { class Canvas; };
class KImageViewerTest : public KParts::MainWindow
{
TQ_OBJECT
public:
KImageViewerTest();
virtual ~KImageViewerTest();
void load(const KURL& url);
private:
KImageViewer::Canvas *m_part;
};
#endif // KIMAGEVIEWERTEST_H
|