1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/protocol/file.h
3 // Purpose: File protocol
4 // Author: Guilhem Lavaux
7 // Copyright: (c) 1997, 1998 Guilhem Lavaux
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef __WX_PROTO_FILE_H__
12 #define __WX_PROTO_FILE_H__
16 #if wxUSE_PROTOCOL_FILE
18 #include "wx/protocol/protocol.h"
20 class WXDLLIMPEXP_NET wxFileProto
: public wxProtocol
24 virtual ~wxFileProto();
26 bool Abort() { return true; }
27 wxString
GetContentType() const { return wxEmptyString
; }
29 wxInputStream
*GetInputStream(const wxString
& path
);
32 DECLARE_DYNAMIC_CLASS_NO_COPY(wxFileProto
)
33 DECLARE_PROTOCOL(wxFileProto
)
36 #endif // wxUSE_PROTOCOL_FILE
38 #endif // __WX_PROTO_FILE_H__