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

图片显示

开发平台:

Visual C++

  1. /*
  2.  * File: imafile.h
  3.  * Purpose: Declaration of the Platform Independent File Image Class
  4.  * Author: Alejandro Aguilar Sierra
  5.  * Created: 1995
  6.  * Copyright: (c) 1995, Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
  7.  *
  8.  *
  9.  */
  10. #ifndef IMAFILEH
  11. #define IMAFILEH
  12. #include "cimageb.h"
  13. class CFileImageImpl: public CImageImpl
  14. {
  15. protected:
  16.   CString filename;
  17. public:
  18.   CFileImageImpl(): CImageImpl() {}
  19.   CFileImageImpl(const CFileImageImpl* ima): CImageImpl(ima) { filename = ima->filename; }
  20.   CFileImageImpl(const CString& imageFileName) { filename = imageFileName ; }
  21. };
  22. #endif