fileaccess.h
来自「用C++基于SQL SERVER使用存储过程」· C头文件 代码 · 共 29 行
H
29 行
// FileAccess.h: interface for the FileAccess class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_FILEACCESS_H__1825F200_E197_4EF5_B7BA_9FF663DD4356__INCLUDED_)
#define AFX_FILEACCESS_H__1825F200_E197_4EF5_B7BA_9FF663DD4356__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class FileAccess
{
public:
CString m_strFileName;
CStdioFile m_stdFile;
CFileStatus m_stdFileStatus;
CString m_strFileRecord;
bool writerecord();
bool readrecord(int);
FileAccess(CString);
virtual ~FileAccess();
};
#endif // !defined(AFX_FILEACCESS_H__1825F200_E197_4EF5_B7BA_9FF663DD4356__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?