class frmNewAccount : public frmNewAccountADT
{
protected:
- // Handlers for frmNewAccountADT events.
- void CheckAccountName( wxCommandEvent& event );
- void ProcessPrevious( wxCommandEvent& event );
- void ProcessNext( wxCommandEvent& event );
- void CloseWindow( wxCommandEvent& event );
- void UpdateRequirements( wxCommandEvent& event );
- void WriteAccountDetails( wxFileConfig *cfgfilein, wxString AccountType, wxString DirectoryName );
+ // Handlers for frmNewAccountADT events.
+ void CheckAccountName( wxCommandEvent& event );
+ void ProcessPrevious( wxCommandEvent& event );
+ void ProcessNext( wxCommandEvent& event );
+ void CloseWindow( wxCommandEvent& event );
+ void UpdateRequirements( wxCommandEvent& event );
+ void WriteAccountDetails( wxFileConfig *cfgfilein, wxString AccountType, wxString DirectoryName );
public:
- /** Constructor */
- frmNewAccount( wxWindow* parent );
- void SetupPointers(bool *ReloadAccountInc);
- //// end generated class members
+ /** Constructor */
+ frmNewAccount( wxWindow* parent );
+ void SetupPointers(bool *ReloadAccountInc);
+ //// end generated class members
private:
- int PageSeek = 0;
- wxString ServerPrefix;
- bool *ReloadAccountConfig = NULL;
+ int PageSeek = 0;
+ wxString ServerPrefix;
+ bool *ReloadAccountConfig = NULL;
};
#endif // __frmNewAccount__