-------------------------------------------------------------------------
| 24 | { |
| 25 | //------------------------------------------------------------------------- |
| 26 | OptionsExport::OptionsExport(OptionsExportType type, |
| 27 | std::wstring&& name, |
| 28 | std::optional<std::wstring>&& parameter) |
| 29 | : type_{type}, name_{std::move(name)}, parameter_{std::move(parameter)} |
| 30 | { |
| 31 | } |
| 32 | |
| 33 | //------------------------------------------------------------------------- |
| 34 | OptionsExportType OptionsExport::GetType() const |
nothing calls this directly
no outgoing calls
no test coverage detected