IMAGIF.H
资源名称:Cimage.zip [点击查看]
上传用户:wep9318
上传日期:2007-01-07
资源大小:893k
文件大小:1k
源码类别:
图片显示
开发平台:
Visual C++
- /*
- * File: imagif.h
- * Purpose: Declaration of the Platform Independent GIF Image Class
- * Author: Alejandro Aguilar Sierra
- * Created: 1995
- * Copyright: (c) 1995, Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
- */
- #if !defined(__ImaGIF_h)
- #define __ImaGIF_h
- #include "imafile.h"
- class CImageGIF: public CFileImageImpl
- {
- public:
- CImageGIF(const CImageGIF * ima): CFileImageImpl(ima)
- {
- }
- CImageGIF(const CString& imageFileName): CFileImageImpl(imageFileName)
- {
- }
- ~CImageGIF() {};
- virtual BOOL ReadFile(const CString& imageFileName=0);
- virtual BOOL SaveFile(const CString& imageFileName=0) { return FALSE; };
- };
- #endif