您最多能選擇 25 個主題 主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。
tdelibs/kdoctools/tdeio_help.h

48 行
851 B

#ifndef __help_h__
#define __help_h__
#include <sys/types.h>
#include <sys/stat.h>
#include <stdio.h>
#include <unistd.h>
#include <tqintdict.h>
#include <tqstring.h>
#include <tqvaluelist.h>
#include <tdeio/global.h>
#include <tdeio/slavebase.h>
class HelpProtocol : public TDEIO::SlaveBase
{
public:
HelpProtocol( bool ghelp, const TQCString &pool, const TQCString &app);
virtual ~HelpProtocol() { }
virtual void get( const KURL& url );
virtual void mimetype( const KURL& url );
private:
TQString langLookup(const TQString& fname);
void emitFile( const KURL &url );
void get_file( const KURL& url );
TQString lookupFile(const TQString &fname, const TQString &query,
bool &redirect);
void unicodeError( const TQString &t );
TQString mParsed;
bool mGhelp;
};
#endif