BmpPP/Src/BmpWriter.h
2022-03-05 20:40:49 +01:00

18 lines
263 B
C++

#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