From b1eeaeb1e899dab64ce7bd21611e072cbca4107c Mon Sep 17 00:00:00 2001 From: Dylan Date: Thu, 30 Apr 2026 01:11:11 +1200 Subject: feat: Started implementing BMP reading This is so I can test PNG writing by reading a BMP and writing it to a PNG, effectively the reverse of the PNG reading testing --- src/BMPImage.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/BMPImage.h') diff --git a/src/BMPImage.h b/src/BMPImage.h index 651192b..e9da6f5 100644 --- a/src/BMPImage.h +++ b/src/BMPImage.h @@ -12,6 +12,7 @@ namespace TehImage private: public: // template T> BMPImage(const T& other) : Image(other) { } + BMPImage() = default; BMPImage(const Image& other) : Image(other) {} int readFromFile(std::string filename) override; -- cgit v1.2.3