diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-10 18:56:16 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-10 18:56:16 +0900 |
commit | 252a2ec8b0f0f9cf20c947737087b24a8185b588 (patch) | |
tree | b48be8863db3bc1c223ac270a258b5c1124cb0e3 /doc/man/man3/tqhttpheader.3qt | |
parent | 87d29563e3ccdeb7fea0197e262e667ef323ff9c (diff) | |
download | tqt-252a2ec8.tar.gz tqt-252a2ec8.zip |
Rename IO and network class nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqhttpheader.3qt')
-rw-r--r-- | doc/man/man3/tqhttpheader.3qt | 74 |
1 files changed, 37 insertions, 37 deletions
diff --git a/doc/man/man3/tqhttpheader.3qt b/doc/man/man3/tqhttpheader.3qt index 22b86fdd1..eb9bf96a9 100644 --- a/doc/man/man3/tqhttpheader.3qt +++ b/doc/man/man3/tqhttpheader.3qt @@ -1,5 +1,5 @@ '\" t -.TH QHttpHeader 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- +.TH TQHttpHeader 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the .\" license file included in the distribution for a complete license .\" statement. @@ -7,28 +7,28 @@ .ad l .nh .SH NAME -QHttpHeader \- Header information for HTTP +TQHttpHeader \- Header information for HTTP .SH SYNOPSIS -\fC#include <ntqhttp.h>\fR +\fC#include <tqhttp.h>\fR .PP -Inherited by QHttpResponseHeader and QHttpRequestHeader. +Inherited by TQHttpResponseHeader and TQHttpRequestHeader. .PP .SS "Public Members" .in +1c .ti -1c -.BI "\fBQHttpHeader\fR ()" +.BI "\fBTQHttpHeader\fR ()" .br .ti -1c -.BI "\fBQHttpHeader\fR ( const QHttpHeader & header )" +.BI "\fBTQHttpHeader\fR ( const TQHttpHeader & header )" .br .ti -1c -.BI "\fBQHttpHeader\fR ( const TQString & str )" +.BI "\fBTQHttpHeader\fR ( const TQString & str )" .br .ti -1c -.BI "virtual \fB~QHttpHeader\fR ()" +.BI "virtual \fB~TQHttpHeader\fR ()" .br .ti -1c -.BI "QHttpHeader & \fBoperator=\fR ( const QHttpHeader & h )" +.BI "TQHttpHeader & \fBoperator=\fR ( const TQHttpHeader & h )" .br .ti -1c .BI "TQString \fBvalue\fR ( const TQString & key ) const" @@ -77,11 +77,11 @@ Inherited by QHttpResponseHeader and QHttpRequestHeader. .br .in -1c .SH DESCRIPTION -The QHttpHeader class contains header information for HTTP. +The TQHttpHeader class contains header information for HTTP. .PP -In most cases you should use the more specialized derivatives of this class, QHttpResponseHeader and QHttpRequestHeader, rather than directly using QHttpHeader. +In most cases you should use the more specialized derivatives of this class, TQHttpResponseHeader and TQHttpRequestHeader, rather than directly using TQHttpHeader. .PP -QHttpHeader provides the HTTP header fields. A HTTP header field consists of a name followed by a colon, a single space, and the field value. (See RFC 1945.) Field names are case-insensitive. A typical header field looks like this: +TQHttpHeader provides the HTTP header fields. A HTTP header field consists of a name followed by a colon, a single space, and the field value. (See RFC 1945.) Field names are case-insensitive. A typical header field looks like this: .PP .nf .br @@ -103,71 +103,71 @@ Some fields are so common that getters and setters are provided for them as a co .PP Each header key has a \fIsingle\fR value associated with it. If you set the value for a key which already exists the previous value will be discarded. .PP -See also QHttpRequestHeader, QHttpResponseHeader, and Input/Output and Networking. +See also TQHttpRequestHeader, TQHttpResponseHeader, and Input/Output and Networking. .SH MEMBER FUNCTION DOCUMENTATION -.SH "QHttpHeader::QHttpHeader ()" +.SH "TQHttpHeader::TQHttpHeader ()" Constructs an empty HTTP header. -.SH "QHttpHeader::QHttpHeader ( const QHttpHeader & header )" +.SH "TQHttpHeader::TQHttpHeader ( const TQHttpHeader & header )" Constructs a copy of \fIheader\fR. -.SH "QHttpHeader::QHttpHeader ( const TQString & str )" +.SH "TQHttpHeader::TQHttpHeader ( const TQString & str )" Constructs a HTTP header for \fIstr\fR. .PP This constructor parses the string \fIstr\fR for header fields and adds this information. The \fIstr\fR should consist of one or more" \\r\\n" delimited lines; each of these lines should have the format key, colon, space, value. -.SH "QHttpHeader::~QHttpHeader ()\fC [virtual]\fR" +.SH "TQHttpHeader::~TQHttpHeader ()\fC [virtual]\fR" Destructor. -.SH "uint QHttpHeader::contentLength () const" +.SH "uint TQHttpHeader::contentLength () const" Returns the value of the special HTTP header field \fCcontent-length\fR. .PP See also setContentLength() and hasContentLength(). -.SH "TQString QHttpHeader::contentType () const" +.SH "TQString TQHttpHeader::contentType () const" Returns the value of the special HTTP header field \fCcontent-type\fR. .PP See also setContentType() and hasContentType(). -.SH "bool QHttpHeader::hasContentLength () const" +.SH "bool TQHttpHeader::hasContentLength () const" Returns TRUE if the header has an entry for the special HTTP header field \fCcontent-length\fR; otherwise returns FALSE. .PP See also contentLength() and setContentLength(). -.SH "bool QHttpHeader::hasContentType () const" +.SH "bool TQHttpHeader::hasContentType () const" Returns TRUE if the header has an entry for the the special HTTP header field \fCcontent-type\fR; otherwise returns FALSE. .PP See also contentType() and setContentType(). -.SH "bool QHttpHeader::hasKey ( const TQString & key ) const" +.SH "bool TQHttpHeader::hasKey ( const TQString & key ) const" Returns TRUE if the HTTP header has an entry with the given \fIkey\fR; otherwise returns FALSE. .PP See also value(), setValue(), and keys(). -.SH "bool QHttpHeader::isValid () const" +.SH "bool TQHttpHeader::isValid () const" Returns TRUE if the HTTP header is valid; otherwise returns FALSE. .PP -A QHttpHeader is invalid if it was created by parsing a malformed string. -.SH "TQStringList QHttpHeader::keys () const" +A TQHttpHeader is invalid if it was created by parsing a malformed string. +.SH "TQStringList TQHttpHeader::keys () const" Returns a list of the keys in the HTTP header. .PP See also hasKey(). -.SH "int QHttpHeader::majorVersion () const\fC [pure virtual]\fR" +.SH "int TQHttpHeader::majorVersion () const\fC [pure virtual]\fR" Returns the major protocol-version of the HTTP header. .PP -Reimplemented in QHttpResponseHeader and QHttpRequestHeader. -.SH "int QHttpHeader::minorVersion () const\fC [pure virtual]\fR" +Reimplemented in TQHttpResponseHeader and TQHttpRequestHeader. +.SH "int TQHttpHeader::minorVersion () const\fC [pure virtual]\fR" Returns the minor protocol-version of the HTTP header. .PP -Reimplemented in QHttpResponseHeader and QHttpRequestHeader. -.SH "QHttpHeader & QHttpHeader::operator= ( const QHttpHeader & h )" +Reimplemented in TQHttpResponseHeader and TQHttpRequestHeader. +.SH "TQHttpHeader & TQHttpHeader::operator= ( const TQHttpHeader & h )" Assigns \fIh\fR and returns a reference to this http header. -.SH "void QHttpHeader::removeValue ( const TQString & key )" +.SH "void TQHttpHeader::removeValue ( const TQString & key )" Removes the entry with the key \fIkey\fR from the HTTP header. .PP See also value() and setValue(). -.SH "void QHttpHeader::setContentLength ( int len )" +.SH "void TQHttpHeader::setContentLength ( int len )" Sets the value of the special HTTP header field \fCcontent-length\fR to \fIlen\fR. .PP See also contentLength() and hasContentLength(). -.SH "void QHttpHeader::setContentType ( const TQString & type )" +.SH "void TQHttpHeader::setContentType ( const TQString & type )" Sets the value of the special HTTP header field \fCcontent-type\fR to \fItype\fR. .PP See also contentType() and hasContentType(). .PP Example: network/archivesearch/archivedialog.ui.h. -.SH "void QHttpHeader::setValue ( const TQString & key, const TQString & value )" +.SH "void TQHttpHeader::setValue ( const TQString & key, const TQString & value )" Sets the value of the entry with the \fIkey\fR to \fIvalue\fR. .PP If no entry with \fIkey\fR exists, a new entry with the given \fIkey\fR and \fIvalue\fR is created. If an entry with the \fIkey\fR already exists, its value is discarded and replaced with the given \fIvalue\fR. @@ -175,17 +175,17 @@ If no entry with \fIkey\fR exists, a new entry with the given \fIkey\fR and \fIv See also value(), hasKey(), and removeValue(). .PP Example: network/archivesearch/archivedialog.ui.h. -.SH "TQString QHttpHeader::toString () const\fC [virtual]\fR" +.SH "TQString TQHttpHeader::toString () const\fC [virtual]\fR" Returns a string representation of the HTTP header. .PP The string is suitable for use by the constructor that takes a TQString. It consists of lines with the format: key, colon, space, value, "\\r\\n". -.SH "TQString QHttpHeader::value ( const TQString & key ) const" +.SH "TQString TQHttpHeader::value ( const TQString & key ) const" Returns the value for the entry with the given \fIkey\fR. If no entry has this \fIkey\fR, an empty string is returned. .PP See also setValue(), removeValue(), hasKey(), and keys(). .SH "SEE ALSO" -.BR http://doc.trolltech.com/qhttpheader.html +.BR http://doc.trolltech.com/tqhttpheader.html .BR http://www.trolltech.com/faq/tech.html .SH COPYRIGHT Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the |