You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.9 KiB
C++
58 lines
1.9 KiB
C++
// Start =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
|
|
// General information section.
|
|
// =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
|
|
// $Author:yongkiang$ User who last changed the file
|
|
// $Date:1/2/2013 12:16:59 PM$ Date and time of last check in
|
|
// $Revision:1.0$ Visual SourceSafe version number
|
|
// $Workfile:: SecurityLevelRS.h $ Filename
|
|
// End =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
|
|
#if !defined(AFX_SECURITYLEVELRS_H__8CB45554_AFED_11D6_A81B_005004C029CA__INCLUDED_)
|
|
#define AFX_SECURITYLEVELRS_H__8CB45554_AFED_11D6_A81B_005004C029CA__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
// SecurityLevelRS.h : header file
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CSecurityLevelRS DAO recordset
|
|
|
|
class CSecurityLevelRS : public CDaoRecordset
|
|
{
|
|
public:
|
|
CSecurityLevelRS(CDaoDatabase* pDatabase = NULL);
|
|
DECLARE_DYNAMIC(CSecurityLevelRS)
|
|
|
|
// Field/Param Data
|
|
//{{AFX_FIELD(CSecurityLevelRS, CDaoRecordset)
|
|
long m_ID;
|
|
CString m_Page_Name;
|
|
CString m_Page_Item;
|
|
short m_Security_Level;
|
|
//}}AFX_FIELD
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CSecurityLevelRS)
|
|
public:
|
|
virtual CString GetDefaultDBName(); // Default database name
|
|
virtual CString GetDefaultSQL(); // Default SQL for Recordset
|
|
virtual void DoFieldExchange(CDaoFieldExchange* pFX); // RFX support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Close Recordset and close database
|
|
virtual void Close( );
|
|
|
|
// 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_SECURITYLEVELRS_H__8CB45554_AFED_11D6_A81B_005004C029CA__INCLUDED_)
|