2013-09-06 22:00:04 -07:00
|
|
|
/* writer_png.h
|
|
|
|
*
|
|
|
|
* Declaration of the PNG writer.
|
|
|
|
*
|
|
|
|
* Eryn Wells <eryn@erynwells.me>
|
|
|
|
*/
|
|
|
|
|
2013-09-10 21:01:29 -07:00
|
|
|
#ifndef __WRITER_PNG_H__
|
|
|
|
#define __WRITER_PNG_H__
|
2013-09-06 22:00:04 -07:00
|
|
|
|
2013-09-10 21:01:29 -07:00
|
|
|
#include "writer.h"
|
2013-09-06 22:00:04 -07:00
|
|
|
|
|
|
|
|
2013-09-10 21:01:29 -07:00
|
|
|
class PNGWriter
|
|
|
|
: public Writer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
int write_scene(const Scene &scene, const std::string &filename);
|
|
|
|
};
|
2013-09-06 22:00:04 -07:00
|
|
|
|
|
|
|
#endif
|