/* writer.h * * Writers handle the interface between (mostly) C libraries to write various image formats and the rest of Charles. * * Eryn Wells */ #ifndef __WRITER_H__ #define __WRITER_H__ #include #include "scene.h" class Writer { public: virtual int write_scene(const Scene &scene, const std::string &filename) = 0; }; #endif