00001 /* === S Y N F I G ========================================================= */ 00025 /* === S T A R T =========================================================== */ 00026 00027 #ifndef __SYNFIG_MPTR_PPM_H 00028 #define __SYNFIG_MPTR_PPM_H 00029 00030 /* === H E A D E R S ======================================================= */ 00031 00032 #include <synfig/importer.h> 00033 #include <synfig/string.h> 00034 00035 /* === M A C R O S ========================================================= */ 00036 00037 /* === T Y P E D E F S ===================================================== */ 00038 00039 /* === C L A S S E S & S T R U C T S ======================================= */ 00040 00041 class ppm_mptr : public synfig::Importer 00042 { 00043 SYNFIG_IMPORTER_MODULE_EXT 00044 private: 00045 synfig::String filename; 00046 public: 00047 ppm_mptr(const char *filename); 00048 ~ppm_mptr(); 00049 00050 virtual bool get_frame(synfig::Surface &surface,synfig::Time time, synfig::ProgressCallback *callback); 00051 }; // END of class ppm_mptr 00052 00053 /* === E N D =============================================================== */ 00054 00055 #endif