⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 savetofile.h

📁 关于字符分割的程序
💻 H
字号:
// savetofile.h: interface for the savetofile class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_SAVETOFILE_H__FC35AF3E_4770_418A_8772_BB635AB28018__INCLUDED_)
#define AFX_SAVETOFILE_H__FC35AF3E_4770_418A_8772_BB635AB28018__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "complex"
using namespace std;

class savetofile  
{
public:
	BOOL filesave(double * iarray, int lWidth, int lHeight);
	BOOL filesave(int * iarray,int lWidth,int lHeight);
	BOOL filesave(complex<double> * iarray,int lWidth,int lHeight);

	savetofile();
	virtual ~savetofile();

private:
	BOOL getFileName(LPSTR lpszPathName);
};

#endif // !defined(AFX_SAVETOFILE_H__FC35AF3E_4770_418A_8772_BB635AB28018__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -