ZenLib
Html_Request.h
Go to the documentation of this file.
1/* Copyright (c) MediaArea.net SARL. All Rights Reserved.
2 *
3 * Use of this source code is governed by a zlib-style license that can
4 * be found in the License.txt file in the root of the source tree.
5 */
6
7//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
8//
9// A HTML Request
10//
11//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
12
13//---------------------------------------------------------------------------
14#ifndef ZenLib_Server_Html_RequestH
15#define ZenLib_Server_Html_RequestH
16//---------------------------------------------------------------------------
17
18//---------------------------------------------------------------------------
20#include <ctime>
21//---------------------------------------------------------------------------
22
23
24namespace ZenLib
25{
26
27namespace Format
28{
29
30namespace Html
31{
32
33//***************************************************************************
34/// @brief
35//***************************************************************************
36
38{
39public:
40 //Constructor/Destructor
42 Request(const Request &Req);
44
45 //The data
47 bool IsCopy;
48private:
49 Request &operator =(const Request &a);
50};
51
52} //Namespace
53
54} //Namespace
55
56} //Namespace
57
58#endif
Definition Html_Handler.h:51
ZenLib::Format::Html::Handler * Html
Definition Html_Request.h:46
Request(const Request &Req)
bool IsCopy
Definition Html_Request.h:47
Definition Html_Handler.h:32
Definition Html_Handler.h:29
Definition BitStream.h:24