]>
git.saurik.com Git - wxWidgets.git/blob - src/common/sckfile.cpp
a4487f8df08572220a6d66bce81f784d0f68272d
   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" 
  28 #include <wx/wfstream.h> 
  29 #include <wx/protocol/file.h> 
  31 #if !USE_SHARED_LIBRARY 
  32 IMPLEMENT_DYNAMIC_CLASS(wxFileProto
, wxProtocol
) 
  33 IMPLEMENT_PROTOCOL(wxFileProto
, _T("file"), NULL
, FALSE
) 
  36 wxFileProto::wxFileProto() 
  41 wxFileProto::~wxFileProto() 
  45 wxInputStream 
*wxFileProto::GetInputStream(const wxString
& path
) 
  47   return new wxFileInputStream(path
);