2012-02-27 18:50:49 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/fs_inet.h
|
|
|
|
// Purpose: HTTP and FTP file system
|
|
|
|
// Author: Vaclav Slavik
|
|
|
|
// Copyright: (c) 1999 Vaclav Slavik
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2012-02-27 18:51:05 -05:00
|
|
|
/**
|
|
|
|
@class wxInternetFSHandler
|
|
|
|
|
|
|
|
A file system handler for accessing files from internet servers.
|
|
|
|
*/
|
2012-02-27 18:50:49 -05:00
|
|
|
class wxInternetFSHandler : public wxFileSystemHandler
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxInternetFSHandler();
|
|
|
|
};
|
|
|
|
|