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.
37 lines
643 B
37 lines
643 B
15 years ago
|
#ifndef __info_h__
|
||
|
#define __info_h__
|
||
|
|
||
14 years ago
|
#include <tqobject.h>
|
||
15 years ago
|
|
||
12 years ago
|
#include <tdeio/slavebase.h>
|
||
15 years ago
|
|
||
12 years ago
|
class TDEProcess;
|
||
15 years ago
|
|
||
12 years ago
|
class InfoProtocol : public TDEIO::SlaveBase
|
||
15 years ago
|
{
|
||
|
public:
|
||
|
|
||
14 years ago
|
InfoProtocol( const TQCString &pool, const TQCString &app );
|
||
15 years ago
|
virtual ~InfoProtocol();
|
||
|
|
||
|
virtual void get( const KURL& url );
|
||
|
virtual void stat( const KURL& url );
|
||
|
virtual void mimetype( const KURL& url );
|
||
|
|
||
|
protected:
|
||
|
|
||
|
void decodeURL( const KURL &url );
|
||
14 years ago
|
void decodePath( TQString path );
|
||
15 years ago
|
|
||
|
private:
|
||
|
|
||
14 years ago
|
TQString m_page;
|
||
|
TQString m_node;
|
||
15 years ago
|
|
||
14 years ago
|
TQString m_perl;
|
||
|
TQString m_infoScript;
|
||
|
TQString m_infoConf;
|
||
15 years ago
|
};
|
||
|
|
||
|
#endif // __info_h__
|