| 80 | } |
| 81 | |
| 82 | void virtual_proxy() |
| 83 | { |
| 84 | LazyBitmap img{ "pokemon.png" }; |
| 85 | draw_image(img); // loaded whether the bitmap is loaded or not |
| 86 | draw_image(img); |
| 87 | } |
| 88 | |
| 89 | void smart_pointers() |
| 90 | { |
nothing calls this directly
no test coverage detected