This commit is contained in:
Leonetienne
2022-03-05 20:40:49 +01:00
parent f993241e9f
commit 33932906c4
5 changed files with 159 additions and 108 deletions

17
Src/BmpWriter.h Normal file
View File

@@ -0,0 +1,17 @@
#ifndef TEST_BMPWRITER_H
#define TEST_BMPWRITER_H
#include <string>
namespace Leonetienne::BmpPP {
class BMP;
class BmpWriter {
public:
static bool Write(const BMP& image, const std::string& filename);
};
}
#endif //TEST_BMPWRITER_H