blob: e95a46a92e1c3c03542ed6f2628e067449a05fcd (
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
27
28
29
30
31
32
|
#ifndef PRINTNODETEST_H
#define PRINTNODETEST_H
#include <kurl.h>
#include <qobject.h>
namespace KSVG
{
class SVGDocument;
class Worker : public QObject
{
Q_OBJECT
public:
Worker(const KURL &url);
~Worker();
private slots:
void slotParsingFinished(bool error, const QString &errorDesc);
private:
// It's not allowed to store a m_doc object here,
// because it's ctor is called before we can setup
// our 'DocumentFactory', in that case it'll just crash (Niko)
SVGDocument *m_doc;
};
}
#endif
// vim:ts=4:noet
|