Mercurial > mercurial > hgweb_rsearcher.cgi
view include/net.h @ 9:ae89ce4793d8
add satellite-view.
author | pyon@macmini |
---|---|
date | Wed, 31 Oct 2018 20:10:29 +0900 |
parents | 82f9af6aa7e4 |
children | 36811fd22bd2 |
line wrap: on
line source
// Filename : net.h // Last Change: 2018-10-31 水 10:34:32. // #ifndef __NET_H__ #define __NET_H__ #include <wx/msgdlg.h> #include <wx/wfstream.h> #include <wx/protocol/http.h> class RsHttp { private: wxString m_server; int m_port; public: RsHttp(); ~RsHttp(); void SetServer( wxString server, int port ) { m_server = server; m_port = port; }; bool Get( wxString url, wxString file ); bool GetDB(); int GetImagesSize( wxString hhs, wxString date ); void GetImages( wxString hhs, wxString date ); }; #endif //__NET_H__