unionset.h
来自「API经典入门」· C头文件 代码 · 共 37 行
H
37 行
// unionset.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CUnionSet recordset
#ifndef __UNIONSET_H__
#define __UNIONSET_H__
#include "date.h"
class CUnionSet : public CRecordset
{
public:
CUnionSet(CDatabase* pDatabase = NULL);
// Field/Param Data
//{{AFX_FIELD(CUnionSet, CRecordset)
double m_HUSBAND;
double m_WIFE;
CString m_REASON;
//}}AFX_FIELD
CDate m_START;
CDate m_END;
double m_fIDParam;
// Implementation
protected:
virtual CString GetDefaultConnect(); // Default connection string
virtual CString GetDefaultSQL(); // Default SQL for Recordset
virtual void DoFieldExchange(CFieldExchange* pFX); // RFX support
DECLARE_DYNAMIC(CUnionSet)
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?