charles/src/writer_png.h

22 lines
295 B
C
Raw Normal View History

2013-09-06 22:00:04 -07:00
/* writer_png.h
*
* Declaration of the PNG writer.
*
* Eryn Wells <eryn@erynwells.me>
*/
#ifndef __WRITER_PNG_H__
#define __WRITER_PNG_H__
2013-09-06 22:00:04 -07:00
#include "writer.h"
2013-09-06 22:00:04 -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