added resizer

This commit is contained in:
albert
2010-02-08 01:40:39 -05:00
parent 3d70335d92
commit 9c441aff4c
24 changed files with 1715 additions and 341 deletions

View File

@@ -0,0 +1,11 @@
#ifndef GIF_READER_H
#define GIF_READER_H
#include "Reader.h"
class GIF: public Reader
{
public:
bool Read(FILE *f, Resizer *resizer, char error[1024]);
};
#endif