updated resizer

This commit is contained in:
albert
2011-08-22 17:46:20 -04:00
parent 6b01c88679
commit 97134c3268
21 changed files with 792 additions and 356 deletions

View File

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