| 25 | // Result indicating success or failure of the Impl run (in which case |
| 26 | // there will be an error message). |
| 27 | struct Result { |
| 28 | Result(bool ok, const string &error) : ok(ok), error(error) {} |
| 29 | bool ok = false; |
| 30 | fl::string error; |
| 31 | }; |
| 32 | // Default values for the Impl. |
| 33 | Impl(const Args &args); |
| 34 | ~Impl() FL_NOEXCEPT; |