| 34 | Bitmap(const Bitmap& from) { *this=from; } |
| 35 | explicit Bitmap(uint prefix_to_set) { init(prefix_to_set); } |
| 36 | void init() { bitmap_init(&map, buffer, default_width, 0); } |
| 37 | void init(uint prefix_to_set) { init(); set_prefix(prefix_to_set); } |
| 38 | uint length() const { return default_width; } |
| 39 | Bitmap& operator=(const Bitmap& map2) |
nothing calls this directly
no test coverage detected