comparison include/auth.h @ 8:82f9af6aa7e4

add net.cpp
author pyon@macmini
date Tue, 30 Oct 2018 17:26:02 +0900
parents 9a8b581c1993
children ae89ce4793d8
comparison
equal deleted inserted replaced
7:29829e98d510 8:82f9af6aa7e4
1 // Filename : auth.h 1 // Filename : auth.h
2 // Last Change: 2018-10-23 ‰Î 09:02:05. 2 // Last Change: 2018-10-29 ŒŽ 09:11:18.
3 // 3 //
4 4
5 #ifndef __AUTH_H__ 5 #ifndef __AUTH_H__
6 #define __AUTH_H__ 6 #define __AUTH_H__
7 7
45 AuthDialog( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = wxEmptyString, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE ); 45 AuthDialog( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = wxEmptyString, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE );
46 ~AuthDialog(); 46 ~AuthDialog();
47 47
48 void SetServer( wxString server ) { m_server = server; }; 48 void SetServer( wxString server ) { m_server = server; };
49 void CreateControls( void ); 49 void CreateControls( void );
50 bool GetDB( void ); 50 //bool GetDB( void );
51 bool LoadDB( void ); 51 bool LoadDB( void );
52 bool IsValidUser( void ); 52 bool IsValidUser( void );
53 wxString GetUser( void ) { return m_user; }; 53 wxString GetUser( void ) { return m_user; };
54 void InDevelop( bool ); 54 void InDevelop( bool );
55 55