a
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
// OperTxtFile.h: interface for the COperTxtFile class.
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
||||
#if !defined(AFX_OPERTXTFILE_H__47AD7FE4_D116_4E7E_8A17_7C63B2E79EEE__INCLUDED_)
|
||||
#define AFX_OPERTXTFILE_H__47AD7FE4_D116_4E7E_8A17_7C63B2E79EEE__INCLUDED_
|
||||
|
||||
#if _MSC_VER > 1000
|
||||
#pragma once
|
||||
#endif // _MSC_VER > 1000
|
||||
|
||||
class COperTxtFile
|
||||
{
|
||||
public:
|
||||
COperTxtFile();
|
||||
virtual ~COperTxtFile();
|
||||
|
||||
public:
|
||||
bool OpenFileforWrite(CString strFileName);
|
||||
void CloseFile();
|
||||
void SetParamWidth(UINT uiWidth);
|
||||
bool WriteFileContent(const CStringArray& strArrContent);
|
||||
bool WriteEmptyRow();
|
||||
|
||||
protected:
|
||||
UINT m_uiParamWidth;
|
||||
FILE* m_pFile;
|
||||
|
||||
};
|
||||
|
||||
#endif // !defined(AFX_OPERTXTFILE_H__47AD7FE4_D116_4E7E_8A17_7C63B2E79EEE__INCLUDED_)
|
||||
Reference in New Issue
Block a user