11 lines
219 B
C++
11 lines
219 B
C++
#ifndef PIXELS_H_
|
|
#define PIXELS_H_
|
|
|
|
#include <iostream>
|
|
|
|
void write_image(std::ostream& os);
|
|
void write_image(std::ostream& os, FILE*);
|
|
void write_image(std::ostream& os, const std::string& path);
|
|
|
|
#endif // PIXELS_H_
|