1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
/////////////////////////////////////////////////////////////////////////////
// Name: wx/fs_inet.h
// Purpose: HTTP and FTP file system
// Author: Vaclav Slavik
// Copyright: (c) 1999 Vaclav Slavik
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
/**
@class wxInternetFSHandler
A file system handler for accessing files from internet servers.
*/
class wxInternetFSHandler : public wxFileSystemHandler
{
public:
wxInternetFSHandler();
};
|