// Created: 20/07/97
// RCS-ID: $Id$
// Copyright: (c) 1997, 1998 Guilhem Lavaux
-// Licence: wxWindows license
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma implementation "sckfile.h"
#endif
#include "wx/defs.h"
#endif
+#if wxUSE_STREAMS && wxUSE_PROTOCOL_FILE
+
#include <stdio.h>
#include "wx/wfstream.h"
#include "wx/protocol/file.h"
wxInputStream *wxFileProto::GetInputStream(const wxString& path)
{
- return new wxFileInputStream(path);
+ return new wxFileInputStream(wxURL::ConvertFromURI(path));
}
+#endif // wxUSE_STREAMS && wxUSE_PROTOCOL_FILE
+