123
This commit is contained in:
24
RenderDll/Common/Textures/Image/GifImage.h
Normal file
24
RenderDll/Common/Textures/Image/GifImage.h
Normal file
@@ -0,0 +1,24 @@
|
||||
|
||||
#ifndef GIFIMAGE_H
|
||||
#define GIFIMAGE_H
|
||||
|
||||
/**
|
||||
* An ImageFile subclass for reading GIF files.
|
||||
*/
|
||||
class CImageGifFile : public CImageFile
|
||||
{
|
||||
///
|
||||
friend class CImageFile; // For constructor
|
||||
|
||||
private:
|
||||
/// Read the GIF file from the buffer.
|
||||
CImageGifFile (byte* buf, long size);
|
||||
|
||||
public:
|
||||
///
|
||||
virtual ~CImageGifFile ();
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user