Mercurial > mercurial > hgweb_rsearcher.cgi
comparison include/auth.h @ 6:9a8b581c1993
improve performance.
author | pyon@macmini |
---|---|
date | Tue, 23 Oct 2018 19:15:22 +0900 |
parents | e3b10fb860b3 |
children | 82f9af6aa7e4 |
comparison
equal
deleted
inserted
replaced
5:e3b10fb860b3 | 6:9a8b581c1993 |
---|---|
1 // Filename : auth.h | 1 // Filename : auth.h |
2 // Last Change: 2018-10-22 ŒŽ 08:41:38. | 2 // Last Change: 2018-10-23 ‰Î 09:02:05. |
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 LoadDB( void ); | 51 bool LoadDB( void ); |
51 bool IsValidUser( void ); | 52 bool IsValidUser( void ); |
52 wxString GetUser( void ) { return m_user; }; | 53 wxString GetUser( void ) { return m_user; }; |
53 void InDevelop( bool ); | 54 void InDevelop( bool ); |
54 | 55 |