00001 /* 00002 * $Id$ 00003 * 00004 * X-VR2 00005 * 00006 * Copyright (C) Juan V. Guerrero 2007 00007 * 00008 * Juan V. Guerrero <mindstorm2600@users.sourceforge.net> 00009 * 00010 * This program is free software, distributed under the terms of 00011 * the GNU General Public License Version 2. See the LICENSE file 00012 * at the top of the source tree. 00013 */ 00014 #ifndef __XVR2_NET_HTTP_RESPONSE_H__ 00015 #define __XVR2_NET_HTTP_RESPONSE_H__ 00016 #include<xvr2/String.h> 00017 #include<xvr2/Timestamp.h> 00018 00019 namespace xvr2 { 00020 namespace Net { 00021 00022 class HTTPResponse : public xvr2::Object { 00023 private: 00024 protected: 00025 int _code; 00026 String _status; 00027 String _version; 00028 Timestamp _recvDate; 00029 String _srv; 00030 String _etag; 00031 String _clength; 00032 String _ctype; 00033 public: 00034 HTTPResponse(); 00035 }; 00036 00037 } 00038 } 00039 00040 00041 #endif