Skip to content

Commit 5534249

Browse files
committed
Make some helper functions private
1 parent 5a6a200 commit 5534249

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lib/pwg2ppm.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
#include <fstream>
44

5+
void invert(Bytestream& bts);
6+
7+
void cmyk2rgb(Bytestream& cmyk);
8+
59
void raster_to_bmp(Bytestream& outBts, Bytestream& file,
610
size_t byteWidth, size_t height, size_t colors, bool urf)
711
{

lib/pwg2ppm.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,4 @@ void write_ppm(Bytestream& outBts,size_t width, size_t height,
1010
size_t colors, size_t bits, bool black,
1111
const std::string& outFilePrefix, int page);
1212

13-
void invert(Bytestream& bts);
14-
15-
void cmyk2rgb(Bytestream& cmyk);
16-
1713
#endif //PWG2PPM_H

0 commit comments

Comments
 (0)