~ubuntu-branches/debian/sid/kdevelop/sid

« back to all changes in this revision

Viewing changes to languages/perl/perldoc.h

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2006-05-23 18:39:42 UTC
  • Revision ID: james.westby@ubuntu.com-20060523183942-hucifbvh68k2bwz7
Tags: upstream-3.3.2
Import upstream version 3.3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _PERLDOC_H_
 
2
#define _PERLDOC_H_
 
3
 
 
4
#include <qobject.h>
 
5
#include <kio/slavebase.h>
 
6
 
 
7
 
 
8
class PerldocProtocol : public KIO::SlaveBase
 
9
{
 
10
public:
 
11
    PerldocProtocol(const QCString &pool, const QCString &app);
 
12
    virtual ~PerldocProtocol();
 
13
 
 
14
    virtual void get(const KURL& url);
 
15
    virtual void stat(const KURL& url);
 
16
    virtual void mimetype(const KURL& url);
 
17
    virtual void listDir(const KURL& url);
 
18
 
 
19
protected:
 
20
    void decodeURL(const KURL &url);
 
21
    void decodePath(QString path);
 
22
    QCString errorMessage();
 
23
};
 
24
 
 
25
#endif