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.
33 lines
525 B
33 lines
525 B
15 years ago
|
#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
|