14 lines
284 B
C++
14 lines
284 B
C++
|
#ifndef PNGCHUNKPLTE_H
|
||
|
#define PNGCHUNKPLTE_H
|
||
|
#include "include/png/PNGChunk.hpp"
|
||
|
|
||
|
class PNGChunkPLTE : public PNGChunk{
|
||
|
|
||
|
public:
|
||
|
|
||
|
PNGChunkPLTE(unsigned int chunkLength, unsigned int type, const unsigned char* chunkData, unsigned int crc32);
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // PNGCHUNKPLTE_H
|