1998-09-06 14:28:00 -04: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 10:56:36 -04:00
|
|
|
// Licence: wxWidgets licence
|
1998-09-06 14:28:00 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2001-12-30 17:27:24 -05:00
|
|
|
|
1998-09-06 14:28:00 -04:00
|
|
|
#ifndef __WX_PROTO_FILE_H__
|
|
|
|
#define __WX_PROTO_FILE_H__
|
|
|
|
|
2003-08-09 08:38:21 -04:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
1998-09-06 14:28:00 -04:00
|
|
|
#pragma interface "sckfile.h"
|
|
|
|
#endif
|
|
|
|
|
2001-12-30 17:27:24 -05:00
|
|
|
#include "wx/defs.h"
|
|
|
|
|
|
|
|
#if wxUSE_PROTOCOL_FILE
|
|
|
|
|
1998-09-06 14:28:00 -04:00
|
|
|
#include "wx/protocol/protocol.h"
|
|
|
|
#include "wx/url.h"
|
|
|
|
|
2003-07-27 18:41:06 -04:00
|
|
|
class WXDLLIMPEXP_NET wxFileProto: public wxProtocol {
|
2003-07-21 20:24:07 -04:00
|
|
|
DECLARE_DYNAMIC_CLASS_NO_COPY(wxFileProto)
|
1998-09-06 14:28:00 -04: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 17:27:24 -05:00
|
|
|
#endif // wxUSE_PROTOCOL_FILE
|
|
|
|
|
|
|
|
#endif // __WX_PROTO_FILE_H__
|