IMAGIF.H
上传用户:wep9318
上传日期:2007-01-07
资源大小:893k
文件大小:1k
源码类别:

图片显示

开发平台:

Visual C++

  1. /*
  2.  * File: imagif.h
  3.  * Purpose: Declaration of the Platform Independent GIF Image Class
  4.  * Author: Alejandro Aguilar Sierra
  5.  * Created: 1995
  6.  * Copyright: (c) 1995, Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
  7.  */
  8. #if !defined(__ImaGIF_h)
  9. #define __ImaGIF_h
  10. #include "imafile.h"
  11. class CImageGIF: public CFileImageImpl
  12. {
  13. public:
  14.   CImageGIF(const CImageGIF * ima): CFileImageImpl(ima)
  15.   {
  16.   }
  17.   CImageGIF(const CString& imageFileName): CFileImageImpl(imageFileName)
  18.   {
  19.   }
  20.   ~CImageGIF() {};
  21.   virtual BOOL ReadFile(const CString& imageFileName=0);
  22.   virtual BOOL SaveFile(const CString& imageFileName=0) { return FALSE; };
  23. };
  24. #endif