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