]>
git.saurik.com Git - wxWidgets.git/blob - src/common/sckfile.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: File protocol
4 // Author: Guilhem Lavaux
8 // Copyright: (c) 1997, 1998 Guilhem Lavaux
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 #pragma implementation "sckfile.h"
15 // For compilers that support precompilation, includes "wx.h".
16 #include "wx/wxprec.h"
27 #include "wx/wfstream.h"
28 #include "wx/protocol/file.h"
30 IMPLEMENT_DYNAMIC_CLASS(wxFileProto
, wxProtocol
)
31 IMPLEMENT_PROTOCOL(wxFileProto
, wxT("file"), NULL
, FALSE
)
33 wxFileProto::wxFileProto()
38 wxFileProto::~wxFileProto()
42 wxInputStream
*wxFileProto::GetInputStream(const wxString
& path
)
44 return new wxFileInputStream(path
);