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