comparison include/net.h @ 10:36811fd22bd2

v1.4
author pyon@macmini
date Thu, 08 Nov 2018 19:15:43 +0900
parents ae89ce4793d8
children 799b6008db8e
comparison
equal deleted inserted replaced
9:ae89ce4793d8 10:36811fd22bd2
1 // Filename : net.h 1 // Filename : net.h
2 // Last Change: 2018-10-31 水 10:34:32. 2 // Last Change: 2018-11-08 木 10:09:04.
3 // 3 //
4 4
5 #ifndef __NET_H__ 5 #ifndef __NET_H__
6 #define __NET_H__ 6 #define __NET_H__
7 7
21 void SetServer( wxString server, int port ) { m_server = server; m_port = port; }; 21 void SetServer( wxString server, int port ) { m_server = server; m_port = port; };
22 bool Get( wxString url, wxString file ); 22 bool Get( wxString url, wxString file );
23 bool GetDB(); 23 bool GetDB();
24 int GetImagesSize( wxString hhs, wxString date ); 24 int GetImagesSize( wxString hhs, wxString date );
25 void GetImages( wxString hhs, wxString date ); 25 void GetImages( wxString hhs, wxString date );
26 void GetImages2Memory( wxString hhs, wxString date );
26 }; 27 };
27 28
28 #endif //__NET_H__ 29 #endif //__NET_H__
29 30