?? imafile.h
字號:
/*
* File: imafile.h
* Purpose: Declaration of the Platform Independent File Image Class
* Author: Alejandro Aguilar Sierra
* Created: 1995
* Copyright: (c) 1995, Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
*
*
*/
#ifndef IMAFILEH
#define IMAFILEH
#include "cimageb.h"
class CFileImageImpl: public CImageImpl
{
protected:
CString filename;
public:
CFileImageImpl(): CImageImpl() {}
CFileImageImpl(const CFileImageImpl* ima): CImageImpl(ima) { filename = ima->filename; }
CFileImageImpl(const CString& imageFileName) { filename = imageFileName ; }
};
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -