sql05doc.h

来自「our homework big project」· C头文件 代码 · 共 64 行

H
64
字号
// sql05Doc.h :  Csql05Doc 类的接口
//

#include <string>
using namespace std;

#pragma once

class Csql05Doc : public CDocument
{
protected: // 仅从序列化创建
	Csql05Doc();
	DECLARE_DYNCREATE(Csql05Doc)

// 属性
public:

// 操作
public:
	BOOL SaveFile(LPCTSTR pszFile);

// 重写
	public:
	virtual BOOL OnNewDocument();
	//virtual void Serialize(CArchive& ar);

// 实现
public:
	virtual ~Csql05Doc();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// 生成的消息映射函数
protected:
	CString myString;
	CString filename;
	afx_msg void OnFileOpen();
	afx_msg void OnFileSave();
	afx_msg void OnFileSaveAs();

	DECLARE_MESSAGE_MAP()
public:
	afx_msg void OnAnalyse();
	afx_msg void OnExecute();
	afx_msg void OnUpdateAnalyse(CCmdUI *pCmdUI);
	afx_msg void OnUpdateRUN(CCmdUI *pCmdUI);
	CView* GetView(int nIndex);
	
	afx_msg void OnFileNew();

protected:
	virtual BOOL SaveModified();
public:
	bool dlgReturn;
	
	
};


⌨️ 快捷键说明

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