| 1335 | } |
| 1336 | |
| 1337 | const std::string contours::font() const { |
| 1338 | if (font_) { |
| 1339 | return *font_; |
| 1340 | } else { |
| 1341 | return parent_->font(); |
| 1342 | } |
| 1343 | } |
| 1344 | |
| 1345 | class contours &contours::font(std::string_view font) { |
| 1346 | font_ = font; |
nothing calls this directly
no outgoing calls
no test coverage detected