| 162 | // ### MapPrinterOptions ### |
| 163 | |
| 164 | MapPrinterOptions::MapPrinterOptions(unsigned int scale, int resolution, MapPrinterMode mode) |
| 165 | : scale(scale), |
| 166 | resolution(resolution), |
| 167 | mode(mode), |
| 168 | color_mode(DefaultColorMode), |
| 169 | show_templates(false), |
| 170 | show_grid(false), |
| 171 | simulate_overprinting(false) |
| 172 | { |
| 173 | // nothing |
| 174 | } |
| 175 | |
| 176 | bool operator==(const MapPrinterOptions& lhs, const MapPrinterOptions& rhs) |
| 177 | { |
nothing calls this directly
no outgoing calls
no test coverage detected