Increase the coverage a bit to see if reporting is motivating :)
All checks were successful
Build ptprnt / build (push) Successful in 1m50s

This commit is contained in:
2023-11-16 21:17:46 +01:00
parent a08f6167b3
commit 3fd6671048
3 changed files with 42 additions and 0 deletions

View File

@@ -22,6 +22,7 @@
#include <stdint.h>
#include <cstdint>
#include <memory>
#include <optional>
#include <vector>
@@ -41,6 +42,7 @@ class Bitmap {
uint16_t getWidth();
uint16_t getHeight();
bool setPixels(const std::vector<T>& pixels);
std::vector<T> getPixelsCpy();
std::optional<std::vector<T>> getLine(uint16_t line);
std::optional<std::vector<T>> getCol(uint16_t col);