]>
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"
26 #include <wx/wfstream.h>
27 #include <wx/protocol/file.h>
29 #if !USE_SHARED_LIBRARY
30 IMPLEMENT_DYNAMIC_CLASS(wxFileProto
, wxProtocol
)
31 IMPLEMENT_PROTOCOL(wxFileProto
, "file", NULL
, FALSE
)
34 wxFileProto::wxFileProto()
39 wxFileProto::~wxFileProto()
43 wxInputStream
*wxFileProto::GetInputStream(const wxString
& path
)
45 return new wxFileInputStream(path
);