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
534 B
26 lines
534 B
15 years ago
|
#ifndef _PERLDOC_H_
|
||
|
#define _PERLDOC_H_
|
||
|
|
||
|
#include <qobject.h>
|
||
|
#include <kio/slavebase.h>
|
||
|
|
||
|
|
||
|
class PerldocProtocol : public KIO::SlaveBase
|
||
|
{
|
||
|
public:
|
||
|
PerldocProtocol(const QCString &pool, const QCString &app);
|
||
|
virtual ~PerldocProtocol();
|
||
|
|
||
|
virtual void get(const KURL& url);
|
||
|
virtual void stat(const KURL& url);
|
||
|
virtual void mimetype(const KURL& url);
|
||
|
virtual void listDir(const KURL& url);
|
||
|
|
||
|
protected:
|
||
|
void decodeURL(const KURL &url);
|
||
|
void decodePath(QString path);
|
||
|
QCString errorMessage();
|
||
|
};
|
||
|
|
||
|
#endif
|