mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 15:51:49 +00:00
61 lines
1.4 KiB
C++
61 lines
1.4 KiB
C++
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
// Name: src/common/sckfile.cpp
|
||
|
// Purpose: File protocol
|
||
|
// Author: Guilhem Lavaux
|
||
|
// Modified by:
|
||
|
// Created: 20/07/97
|
||
|
// RCS-ID: $Id: sckfile.cpp 58137 2009-01-16 15:08:13Z FM $
|
||
|
// Copyright: (c) 1997, 1998 Guilhem Lavaux
|
||
|
// Licence: wxWindows licence
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
// For compilers that support precompilation, includes "wx.h".
|
||
|
#include "wx/wxprec.h"
|
||
|
|
||
|
#ifdef __BORLANDC__
|
||
|
#pragma hdrstop
|
||
|
#endif
|
||
|
|
||
|
#if wxUSE_STREAMS && wxUSE_PROTOCOL_FILE
|
||
|
|
||
|
#ifndef WX_PRECOMP
|
||
|
#endif
|
||
|
|
||
|
#include "wx/uri.h"
|
||
|
#include "wx/wfstream.h"
|
||
|
#include "wx/protocol/file.h"
|
||
|
|
||
|
|
||
|
// ----------------------------------------------------------------------------
|
||
|
// wxFileProto
|
||
|
// ----------------------------------------------------------------------------
|
||
|
|
||
|
IMPLEMENT_DYNAMIC_CLASS(wxFileProto, wxProtocol)
|
||
|
IMPLEMENT_PROTOCOL(wxFileProto, wxT("file"), NULL, false)
|
||
|
|
||
|
wxFileProto::wxFileProto()
|
||
|
: wxProtocol()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
wxFileProto::~wxFileProto()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
wxInputStream *wxFileProto::GetInputStream(const wxString& path)
|
||
|
{
|
||
|
wxFileInputStream *retval = new wxFileInputStream(wxURI::Unescape(path));
|
||
|
if ( retval->Ok() )
|
||
|
{
|
||
|
m_lastError = wxPROTO_NOERR;
|
||
|
return retval;
|
||
|
}
|
||
|
|
||
|
m_lastError = wxPROTO_NOFILE;
|
||
|
delete retval;
|
||
|
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
#endif // wxUSE_STREAMS && wxUSE_PROTOCOL_FILE
|