Files
FC1/RenderDll/Common/Textures/Image/JpgImage.h
romkazvo 34d6c5d489 123
2023-08-07 19:29:24 +08:00

25 lines
410 B
C++

#ifndef JPGIMAGE_H
#define JPGIMAGE_H
/**
* An ImageFile subclass for reading JPG files.<p>
* This implementation needs libjpeg to read JFIF files.
*/
class CImageJpgFile : public CImageFile
{
///
friend class CImageFile; // For constructor
private:
/// Read the JPG file from the buffer.
CImageJpgFile (byte* buf, long size);
public:
///
virtual ~CImageJpgFile ();
};
#endif //JPGIMAGE_H