ZenLib
Html_Request.h
Go to the documentation of this file.
00001 /*  Copyright (c) MediaArea.net SARL. All Rights Reserved.
00002  *
00003  *  Use of this source code is governed by a zlib-style license that can
00004  *  be found in the License.txt file in the root of the source tree.
00005  */
00006 
00007 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
00008 //
00009 // A HTML Request
00010 //
00011 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
00012 
00013 //---------------------------------------------------------------------------
00014 #ifndef ZenLib_Server_Html_RequestH
00015 #define ZenLib_Server_Html_RequestH
00016 //---------------------------------------------------------------------------
00017 
00018 //---------------------------------------------------------------------------
00019 #include "ZenLib/Format/Html/Html_Handler.h"
00020 #include <ctime>
00021 //---------------------------------------------------------------------------
00022 
00023 
00024 namespace ZenLib
00025 {
00026 
00027 namespace Format
00028 {
00029 
00030 namespace Html
00031 {
00032 
00033 //***************************************************************************
00034 /// @brief
00035 //***************************************************************************
00036 
00037 class Request
00038 {
00039 public:
00040     //Constructor/Destructor
00041     Request();
00042     Request(const Request &Req);
00043     ~Request();
00044 
00045     //The data
00046     ZenLib::Format::Html::Handler   *Html;
00047     bool                            IsCopy;
00048 private:
00049     Request &operator =(const Request &a);
00050 };
00051 
00052 } //Namespace
00053 
00054 } //Namespace
00055 
00056 } //Namespace
00057 
00058 #endif