dag.h

来自「VC操作SQL Server主从表,一种利用VC操作数据库主从表的源码」· C头文件 代码 · 共 51 行

H
51
字号
// dag.h : main header file for the DAG application
//

#if !defined(AFX_DAG_H__90FA8C85_5642_4CB0_9C7C_D52739478884__INCLUDED_)
#define AFX_DAG_H__90FA8C85_5642_4CB0_9C7C_D52739478884__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#ifndef __AFXWIN_H__
	#error include 'stdafx.h' before including this file for PCH
#endif

#include "resource.h"       // main symbols

/////////////////////////////////////////////////////////////////////////////
// CDagApp:
// See dag.cpp for the implementation of this class
//

class CDagApp : public CWinApp
{
public:
	// 定义ADO连接变量指针
	_ConnectionPtr	m_pConnection;
	CDagApp();

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CDagApp)
	public:
	virtual BOOL InitInstance();
	virtual int ExitInstance();
	//}}AFX_VIRTUAL

// Implementation
	//{{AFX_MSG(CDagApp)
	afx_msg void OnAppAbout();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};


/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_DAG_H__90FA8C85_5642_4CB0_9C7C_D52739478884__INCLUDED_)

⌨️ 快捷键说明

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