#ifndef IPC_DIALOG_H_F4C5680C #define IPC_DIALOG_H_F4C5680C #include #ifndef WX_PRECOMP #include #endif #include class IpcDialog : public wxDialog { public: IpcDialog(); std::string GetIpcAddress() { return address_box_->GetValue().utf8_string(); } private: void OnResetClicked(wxCommandEvent& event); wxTextCtrl* address_box_; }; #endif /* end of include guard: IPC_DIALOG_H_F4C5680C */ id='header'> cgit logo index : lingo-ap-tracker
Autotracker for the Lingo Archipelago integration
about summary refs log tree commit diff stats
blob: 2d2f746545fc3afea5060e6713d2dcfcab49ed3c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47