#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().ToStdString(); } private: void OnResetClicked(wxCommandEvent& event); wxTextCtrl* address_box_; }; #endif /* end of include guard: IPC_DIALOG_H_F4C5680C */