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