blob: 7c9f0fdc8e37228947519eef579d54714e01bf88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
//
// Copyright 2006 Johannes Hofmann <Johannes.Hofmann@gmx.de>
//
// This software may be used and distributed according to the terms
// of the GNU General Public License, incorporated herein by reference.
#ifndef OUTPUTIMAGE_H
#define OUTPUTIMAGE_H
class OutputImage {
private:
int initialized;
public:
OutputImage();
virtual ~OutputImage();
virtual int init(int w1, int h1);
int set_pixel(int x, char r, char g, char b);
int next_line();
int done();
protected:
int W, H, line;
virtual int init_internal(int w1, int h1);
virtual int set_pixel_internal(int x, char r, char g, char b);
virtual int next_line_internal();
virtual int done_internal();
};
#endif
|