summaryrefslogtreecommitdiff
path: root/src/ScreenDump.H
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-03-27 08:15:44 +0100
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-03-27 08:15:44 +0100
commitc88a67ce878890138dfc5a16d7d834a2f0cce8fc (patch)
treee75eecac944468a9344ab48f211609b112017629 /src/ScreenDump.H
parent9b3494d95ce96d87bac6b1b159a17ebc2bbcff5d (diff)
make ScreenDump work on OutputImage
Diffstat (limited to 'src/ScreenDump.H')
-rw-r--r--src/ScreenDump.H5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ScreenDump.H b/src/ScreenDump.H
index c0c9d21..d99a72d 100644
--- a/src/ScreenDump.H
+++ b/src/ScreenDump.H
@@ -8,6 +8,7 @@
#define SCREENDUMP_H
#include "GipfelWidget.H"
+#include "OutputImage.H"
class ScreenDump {
private:
@@ -15,10 +16,10 @@ class ScreenDump {
unsigned char * rgb;
public:
- ScreenDump(GipfelWidget *g);
+ ScreenDump(GipfelWidget *gipf);
~ScreenDump();
- int save(const char *file);
+ int save(OutputImage *out);
};
#endif