DCL 4.0
Loading...
Searching...
No Matches
HttpHeader.h File Reference
#include <dcl/_time.h>
#include <dcl/String.h>

Go to the source code of this file.

Classes

class  HttpHeader
class  HttpSetCookie
class  HttpSetCookie2
class  HttpExpires

Macros

#define __DCL_HTTP_HEADER_H__   20050509

Functions

bool operator== (const HttpHeader &x, const HttpHeader &y)

Macro Definition Documentation

◆ __DCL_HTTP_HEADER_H__

#define __DCL_HTTP_HEADER_H__   20050509

Definition at line 2 of file HttpHeader.h.

Function Documentation

◆ operator==()

bool operator== ( const HttpHeader & x,
const HttpHeader & y )
inline

Definition at line 102 of file HttpHeader.h.

103{
104 return (x.name() == y.name()) && (x.content() == y.content());
105}
const String & content() const
Definition HttpHeader.h:97
const String & name() const
Definition HttpHeader.h:92