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
#ifndef __info_h__
|
|
#define __info_h__
|
|
|
|
#include <tqobject.h>
|
|
|
|
#include <tdeio/slavebase.h>
|
|
|
|
class TDEProcess;
|
|
|
|
class InfoProtocol : public TDEIO::SlaveBase
|
|
{
|
|
public:
|
|
|
|
InfoProtocol( const TQCString &pool, const TQCString &app );
|
|
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 );
|
|
void decodePath( TQString path );
|
|
|
|
private:
|
|
|
|
TQString m_page;
|
|
TQString m_node;
|
|
|
|
TQString m_perl;
|
|
TQString m_infoScript;
|
|
TQString m_infoConf;
|
|
};
|
|
|
|
#endif // __info_h__
|