1998-09-06 18:28:00 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: file.h
|
|
|
|
// Purpose: File protocol
|
|
|
|
// Author: Guilhem Lavaux
|
|
|
|
// Modified by:
|
|
|
|
// Created: 1997
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 1997, 1998 Guilhem Lavaux
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-09-06 18:28:00 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2001-12-30 22:27:24 +00:00
|
|
|
|
1998-09-06 18:28:00 +00:00
|
|
|
#ifndef __WX_PROTO_FILE_H__
|
|
|
|
#define __WX_PROTO_FILE_H__
|
|
|
|
|
2001-12-30 22:27:24 +00:00
|
|
|
#include "wx/defs.h"
|
|
|
|
|
|
|
|
#if wxUSE_PROTOCOL_FILE
|
|
|
|
|
1998-09-06 18:28:00 +00:00
|
|
|
#include "wx/protocol/protocol.h"
|
|
|
|
#include "wx/url.h"
|
|
|
|
|
2003-07-27 22:41:06 +00:00
|
|
|
class WXDLLIMPEXP_NET wxFileProto: public wxProtocol {
|
2003-07-22 00:24:07 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS_NO_COPY(wxFileProto)
|
1998-09-06 18:28:00 +00:00
|
|
|
DECLARE_PROTOCOL(wxFileProto)
|
|
|
|
protected:
|
|
|
|
wxProtocolError m_error;
|
|
|
|
public:
|
|
|
|
wxFileProto();
|
|
|
|
~wxFileProto();
|
|
|
|
|
|
|
|
wxProtocolError GetError() { return m_error; }
|
|
|
|
bool Abort() { return TRUE; }
|
|
|
|
wxInputStream *GetInputStream(const wxString& path);
|
|
|
|
};
|
|
|
|
|
2001-12-30 22:27:24 +00:00
|
|
|
#endif // wxUSE_PROTOCOL_FILE
|
|
|
|
|
|
|
|
#endif // __WX_PROTO_FILE_H__
|