]> git.saurik.com Git - wxWidgets.git/blame - include/wx/protocol/file.h
no real changes, just some cleanup
[wxWidgets.git] / include / wx / protocol / file.h
CommitLineData
f4ada568
GL
1/////////////////////////////////////////////////////////////////////////////
2// Name: file.h
3// Purpose: File protocol
4// Author: Guilhem Lavaux
5// Modified by:
6// Created: 1997
7// RCS-ID: $Id$
8// Copyright: (c) 1997, 1998 Guilhem Lavaux
65571936 9// Licence: wxWindows licence
f4ada568 10/////////////////////////////////////////////////////////////////////////////
a5d46b73 11
f4ada568
GL
12#ifndef __WX_PROTO_FILE_H__
13#define __WX_PROTO_FILE_H__
14
a5d46b73
VZ
15#include "wx/defs.h"
16
17#if wxUSE_PROTOCOL_FILE
18
f4ada568 19#include "wx/protocol/protocol.h"
f4ada568 20
7c4728f6 21class WXDLLIMPEXP_NET wxFileProto: public wxProtocol {
fc7a2a60 22 DECLARE_DYNAMIC_CLASS_NO_COPY(wxFileProto)
f4ada568
GL
23 DECLARE_PROTOCOL(wxFileProto)
24protected:
25 wxProtocolError m_error;
26public:
27 wxFileProto();
d3c7fc99 28 virtual ~wxFileProto();
f4ada568
GL
29
30 wxProtocolError GetError() { return m_error; }
31 bool Abort() { return TRUE; }
32 wxInputStream *GetInputStream(const wxString& path);
33};
34
a5d46b73
VZ
35#endif // wxUSE_PROTOCOL_FILE
36
37#endif // __WX_PROTO_FILE_H__