You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
410 B
26 lines
410 B
15 years ago
|
#ifndef KIMAGEVIEWERTEST_H
|
||
|
#define KIMAGEVIEWERTEST_H
|
||
|
|
||
|
#ifdef HAVE_CONFIG_H
|
||
|
#include <config.h>
|
||
|
#endif
|
||
|
|
||
|
#include <kapplication.h>
|
||
|
#include <kparts/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
|