1 //
2 // HtHTTPSecure.h
3 //
4 // HtHTTPSecure: Class for HTTP/HTTPS messaging (derived from Transport)
5 //		Uses an SSLConnection for secure connections.
6 //
7 // Part of the ht://Dig package   <http://www.htdig.org/>
8 // Copyright (c) 1995-2004 The ht://Dig Group
9 // For copyright details, see the file COPYING in your distribution
10 // or the GNU Library General Public License (LGPL) version 2 or later
11 // <http://www.gnu.org/copyleft/lgpl.html>
12 //
13 // $Id: HtHTTPSecure.h,v 1.4 2004/05/28 13:15:23 lha Exp $
14 //
15 
16 #ifndef _HTHTTPSECURE_H
17 #define _HTHTTPSECURE_H
18 
19 #include "HtHTTP.h"
20 #include "Transport.h"
21 #include "SSLConnection.h"
22 #include "URL.h"
23 #include "htString.h"
24 
25 #ifdef HAVE_SSL_H
26 
27 class HtHTTPSecure : public HtHTTP
28 {
29  public:
30   HtHTTPSecure();
31   ~HtHTTPSecure();
32 };
33 
34 #endif
35 
36 #endif
37 
38