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 
24 namespace ZenLib
25 {
26 
27 namespace Format
28 {
29 
30 namespace Html
31 {
32 
33 //***************************************************************************
34 /// @brief
35 //***************************************************************************
36 
37 class Request
38 {
39 public:
40  //Constructor/Destructor
41  Request();
42  Request(const Request &Req);
43  ~Request();
44 
45  //The data
47  bool IsCopy;
48 private:
49  Request &operator =(const Request &a);
50 };
51 
52 } //Namespace
53 
54 } //Namespace
55 
56 } //Namespace
57 
58 #endif
Html_Handler.h
ZenLib::Format::Html::Request::Request
Request()
ZenLib::Format::Html::Request::~Request
~Request()
ZenLib::Format::Html::Request::Html
ZenLib::Format::Html::Handler * Html
Definition: Html_Request.h:46
ZenLib
Definition: BitStream.h:23
ZenLib::Format::Html::Request
Definition: Html_Request.h:37
ZenLib::Format::Html::Handler
Definition: Html_Handler.h:50
ZenLib::Format::Html::Request::IsCopy
bool IsCopy
Definition: Html_Request.h:47