#pragma once #include "image.h" #include #include namespace TehImage { class BMPImage : public Image { private: public: // template T> BMPImage(const T& other) : Image(other) { } BMPImage(const Image& other) : Image(other) {} int readFromFile(std::string filename) override; int writeToFile(std::string filename) override; }; }