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 16:53:33 -04:00
|
|
|
// Licence: wxWindows 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__
|
|
|
|
|
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"
|
|
|
|
|
2009-01-16 10:08:13 -05:00
|
|
|
class WXDLLIMPEXP_NET wxFileProto: public wxProtocol
|
|
|
|
{
|
1998-09-06 14:28:00 -04:00
|
|
|
public:
|
2009-01-16 10:08:13 -05:00
|
|
|
wxFileProto();
|
|
|
|
virtual ~wxFileProto();
|
|
|
|
|
|
|
|
bool Abort() { return true; }
|
|
|
|
wxString GetContentType() const { return wxEmptyString; }
|
1998-09-06 14:28:00 -04:00
|
|
|
|
2009-01-16 10:08:13 -05:00
|
|
|
wxInputStream *GetInputStream(const wxString& path);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
DECLARE_DYNAMIC_CLASS_NO_COPY(wxFileProto)
|
|
|
|
DECLARE_PROTOCOL(wxFileProto)
|
1998-09-06 14:28:00 -04:00
|
|
|
};
|
|
|
|
|
2001-12-30 17:27:24 -05:00
|
|
|
#endif // wxUSE_PROTOCOL_FILE
|
|
|
|
|
|
|
|
#endif // __WX_PROTO_FILE_H__
|