aboutsummaryrefslogtreecommitdiff
path: root/src/PNGImage.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/PNGImage.h')
-rw-r--r--src/PNGImage.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/PNGImage.h b/src/PNGImage.h
index 3c1bf1f..a5d8f3a 100644
--- a/src/PNGImage.h
+++ b/src/PNGImage.h
@@ -19,10 +19,6 @@ namespace TehImage
class PNGImage : public Image
{
- private:
- ZLibInflator zlib;
- uint8_t* idatData;
- unsigned long idatDataSize;
public:
PNGImage();
~PNGImage();
@@ -64,6 +60,10 @@ namespace TehImage
CHUNK_READER(IDAT);
CHUNK_READER(IEND);
+ ZLibInflator zlib;
+ uint8_t* idatData;
+ unsigned long idatDataSize;
+
bool end = false;
Reader *reader;