Initial version of GTC Challenge/Response panel added

This commit is contained in:
2017-01-31 14:54:13 +01:00
parent 4c1d4b0580
commit cfc241d3a6
8 changed files with 652 additions and 2 deletions

View File

@@ -22,6 +22,7 @@
#include "../../GTC/include/Config.h"
class wxGTCConfigPanel;
class wxGTCResponsePanel;
/// \addtogroup EAPBaseGUI
/// @{
@@ -40,6 +41,8 @@ typedef wxEAPCredentialsConfigPanel<eap::credentials_identity, wxGTCCredentialsP
#pragma once
#include "../res/wxGTC_UI.h"
#include <wx/panel.h>
#include <wx/stattext.h>
@@ -74,4 +77,17 @@ protected:
wxGTCCredentialsConfigPanel *m_credentials; ///< Credentials configuration panel
};
///
/// GTC challenge/response panel
///
class wxGTCResponsePanel : public wxGTCResponsePanelBase
{
public:
///
/// Constructs a panel
///
wxGTCResponsePanel(const eap::config_provider &prov, eap::config_method_eapgtc &cfg, wxWindow* parent);
};
/// @}