Move to new Build System

This commit is contained in:
2020-05-01 10:21:46 +02:00
parent 4ee3f56bd7
commit 1a464d85cf
51 changed files with 1088 additions and 1101 deletions
+26
View File
@@ -0,0 +1,26 @@
#ifndef MIMEIMAGE_H
#define MIMEIMAGE_H
#include "JpegImage.h"
namespace Image {
class MimeImage
{
public:
MimeImage();
MimeImage(const std::string& name);
void AppendData(const std::string& data);
const JpegImage& DecodeImageData();
private:
std::string m_name;
std::string m_imageData;
JpegImage m_jpegImage;
};
} // namespace Image
#endif // MIMEIMAGE_H