blob: 608ca4e953ca372389ec73918e0f74b1fa7d529d (
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 KParts { class ReadWritePart; }
class Test : public KParts::MainWindow
{
Q_OBJECT
public:
Test();
virtual ~Test();
void load(const KURL& url);
private:
KParts::ReadWritePart * m_part;
};
#endif // KIMAGEVIEWERTEST_H
|