00001 /* 00002 File: PPMFilter.h 00003 00004 Copyright(C) C. Kotterink, Computed Graphics 00005 */ 00006 #ifndef PPMFILTER_H 00007 #define PPMFILTER_H 00008 00009 #include<ImageFilter.h> 00010 #include<stdio.h> 00011 00014 class PPMFilter : public ImageFilter 00015 { 00016 public: 00017 const char *extention(); 00018 00019 // Inherited from ImageFilter 00020 Image *read(const string &fileName); 00021 void write(const string &fileName, Image &image); 00022 }; 00023 #endif