1
0
Fork 0
This commit is contained in:
Henrik Hautakoski 2020-10-21 12:59:55 +02:00
parent 58513d70c0
commit 0c6105e418
7 changed files with 168 additions and 2 deletions

View file

@ -0,0 +1,20 @@
#ifndef SPECTRE_GRAPHICS_IMAGE_ICOFORMAT_H
#define SPECTRE_GRAPHICS_IMAGE_ICOFORMAT_H
#include "Decoder.h"
namespace sp {
namespace image {
class IcoFormat : public Decoder
{
public :
bool decode(Image& img, const unsigned char *data, unsigned size);
};
}} // namespace sp::image
#endif /* SPECTRE_GRAPHICS_IMAGE_ICOFORMAT_H */