managerset.h

来自「图书管理系统,数据结构思想,用 C++编写,经测试,可用」· C头文件 代码 · 共 49 行

H
49
字号
#if !defined(AFX_MANAGERSET_H__195B9711_22BD_44E8_9D60_F0A082B90B3D__INCLUDED_)
#define AFX_MANAGERSET_H__195B9711_22BD_44E8_9D60_F0A082B90B3D__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// ManagerSet.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CManagerSet recordset

class CManagerSet : public CRecordset
{
public:
	CManagerSet(CDatabase* pDatabase = NULL);
	DECLARE_DYNAMIC(CManagerSet)

// Field/Param Data
	//{{AFX_FIELD(CManagerSet, CRecordset)
	CString	m_managerid;
	CString	m_managername;
	CString	m_password;
	CTime	m_logintime;
	CTime	m_logouttime;
	//}}AFX_FIELD


// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CManagerSet)
	public:
	virtual CString GetDefaultConnect();    // Default connection string
	virtual CString GetDefaultSQL();    // Default SQL for Recordset
	virtual void DoFieldExchange(CFieldExchange* pFX);  // RFX support
	//}}AFX_VIRTUAL

// Implementation
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif
};

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

#endif // !defined(AFX_MANAGERSET_H__195B9711_22BD_44E8_9D60_F0A082B90B3D__INCLUDED_)

⌨️ 快捷键说明

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