]>
Commit | Line | Data |
---|---|---|
f4ada568 GL |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: sckfile.cpp | |
3 | // Purpose: File protocol | |
4 | // Author: Guilhem Lavaux | |
5 | // Modified by: | |
6 | // Created: 20/07/97 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 1997, 1998 Guilhem Lavaux | |
9 | // Licence: wxWindows license | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | #ifdef __GNUG__ | |
12 | #pragma implementation "sckfile.h" | |
13 | #endif | |
fcc6dddd JS |
14 | |
15 | // For compilers that support precompilation, includes "wx.h". | |
16 | #include "wx/wxprec.h" | |
f4ada568 GL |
17 | |
18 | #ifdef __BORLANDC__ | |
19 | #pragma hdrstop | |
20 | #endif | |
21 | ||
fcc6dddd JS |
22 | #ifndef WX_PRECOMP |
23 | #endif | |
24 | ||
25 | #include <stdio.h> | |
26 | #include <stdlib.h> | |
27 | #include <wx/fstream.h> | |
28 | #include "wx/protocol/file.h" | |
29 | ||
f4ada568 GL |
30 | #if !USE_SHARED_LIBRARY |
31 | IMPLEMENT_DYNAMIC_CLASS(wxFileProto, wxProtocol) | |
32 | IMPLEMENT_PROTOCOL(wxFileProto, "file", NULL, FALSE) | |
33 | #endif | |
34 | ||
35 | wxFileProto::wxFileProto() | |
36 | : wxProtocol() | |
37 | { | |
38 | } | |
39 | ||
40 | wxFileProto::~wxFileProto() | |
41 | { | |
42 | } | |
43 | ||
44 | wxInputStream *wxFileProto::GetInputStream(const wxString& path) | |
45 | { | |
46 | return new wxFileInputStream(path); | |
47 | } |