summaryrefslogtreecommitdiff
path: root/src/TIFFOutputImage.H
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2008-07-05 21:52:55 +0200
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2008-07-05 21:52:55 +0200
commit29ecf5a14953471a061e5022563a6edd09d9dbef (patch)
tree7b03df7c40b4fd8f8050b770e9edea5d48b4eba2 /src/TIFFOutputImage.H
parentdb527409f2c6f21195245484e936573a3c76f028 (diff)
OutputImage cleanup
Diffstat (limited to 'src/TIFFOutputImage.H')
-rw-r--r--src/TIFFOutputImage.H14
1 files changed, 5 insertions, 9 deletions
diff --git a/src/TIFFOutputImage.H b/src/TIFFOutputImage.H
index 9b0f83b..b5409eb 100644
--- a/src/TIFFOutputImage.H
+++ b/src/TIFFOutputImage.H
@@ -19,19 +19,15 @@ class TIFFOutputImage : public OutputImage {
char *file;
TIFF *tiff;
- public:
- TIFFOutputImage(const char *file, int b = 8);
-
- ~TIFFOutputImage();
-
protected:
- int init_internal(int w, int h);
-
+ int init_internal();
int set_pixel_internal(int x, int r, int g, int b);
-
int next_line_internal();
-
int done_internal();
+
+ public:
+ TIFFOutputImage(const char *file, int b = 8);
+ ~TIFFOutputImage();
};
#endif