about summary refs log tree commit diff stats
path: root/connection_dialog.h
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2023-05-05 15:46:58 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2023-05-05 15:46:58 -0400
commit149e7c0836927e14a926a952bd1a7f0d1b49e779 (patch)
tree2c7ac89387eb890d3d345217b79929e9a23f4ecf /connection_dialog.h
parent0dace7831673170bd31eefa6bbe6e705211d3061 (diff)
downloadlingo-ap-tracker-149e7c0836927e14a926a952bd1a7f0d1b49e779.tar.gz
lingo-ap-tracker-149e7c0836927e14a926a952bd1a7f0d1b49e779.tar.bz2
lingo-ap-tracker-149e7c0836927e14a926a952bd1a7f0d1b49e779.zip
Organised repo
Diffstat (limited to 'connection_dialog.h')
-rw-r--r--connection_dialog.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/connection_dialog.h b/connection_dialog.h deleted file mode 100644 index 5d2703d..0000000 --- a/connection_dialog.h +++ /dev/null
@@ -1,30 +0,0 @@
1#ifndef CONNECTION_DIALOG_H_E526D0E7
2#define CONNECTION_DIALOG_H_E526D0E7
3
4#include <wx/wxprec.h>
5
6#ifndef WX_PRECOMP
7#include <wx/wx.h>
8#endif
9
10#include <string>
11
12class ConnectionDialog : public wxDialog {
13 public:
14 ConnectionDialog();
15
16 std::string GetServerValue() { return server_box_->GetValue().ToStdString(); }
17
18 std::string GetPlayerValue() { return player_box_->GetValue().ToStdString(); }
19
20 std::string GetPasswordValue() {
21 return password_box_->GetValue().ToStdString();
22 }
23
24 private:
25 wxTextCtrl* server_box_;
26 wxTextCtrl* player_box_;
27 wxTextCtrl* password_box_;
28};
29
30#endif /* end of include guard: CONNECTION_DIALOG_H_E526D0E7 */