| 94 | DelegateOptions::~DelegateOptions() = default; |
| 95 | |
| 96 | DelegateOptions::DelegateOptions() |
| 97 | : p_DelegateOptionsImpl(std::make_unique<DelegateOptionsImpl>()) |
| 98 | { |
| 99 | } |
| 100 | |
| 101 | DelegateOptions::DelegateOptions(DelegateOptions const &other) |
| 102 | : p_DelegateOptionsImpl(std::make_unique<DelegateOptionsImpl>(*other.p_DelegateOptionsImpl)) |
nothing calls this directly
no test coverage detected