| 106 | } |
| 107 | |
| 108 | class StringBinder final : public wxValidator { |
| 109 | std::string *value; |
| 110 | |
| 111 | wxObject* Clone() const override { return new StringBinder(value); } |
| 112 | bool Validate(wxWindow*) override { return true;} |
| 113 | bool TransferToWindow() override; |
| 114 | bool TransferFromWindow() override; |
| 115 | |
| 116 | public: |
| 117 | explicit StringBinder(std::string *value) : value(value) { } |
| 118 | }; |
no outgoing calls
no test coverage detected