15 lines
296 B
C++
15 lines
296 B
C++
#ifndef PNGCHUNKIDAT_HPP
|
|
#define PNGCHUNKIDAT_HPP
|
|
|
|
#include "include/png/PNGChunk.hpp"
|
|
|
|
class PNGChunkIDAT : public PNGChunk{
|
|
|
|
public:
|
|
|
|
PNGChunkIDAT(unsigned int chunkLength, unsigned int chunkType, const unsigned char* chunkData, unsigned int crc32);
|
|
|
|
};
|
|
|
|
#endif // PNGCHUNKIDAT_HPP
|