Mercurial > mercurial > hgweb_rsearcher.cgi
view include/net.h @ 13:f5ffc34f045a
manage DB.
author | pyon@macmini |
---|---|
date | Wed, 14 Nov 2018 19:43:40 +0900 |
parents | 799b6008db8e |
children | c262e17de9b1 |
line wrap: on
line source
// Filename : net.h // Last Change: 2018-11-14 水 10:05:44. // #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 a, int h, int i); int GetImagesSize( wxString hhs, wxString date ); void GetImages( wxString hhs, wxString date ); void GetImages2Memory( wxString hhs, wxString date ); }; #endif //__NET_H__