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.
26 lines
497 B
C++
26 lines
497 B
C++
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
//文件 RecordsetCurveBind.h
|
|
//主要功能:
|
|
//
|
|
//程序编写: 2005-12-07
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma once
|
|
#include ".\recordsetdynamicbind.h"
|
|
|
|
namespace NOperatorDB
|
|
{
|
|
|
|
class CRecordsetCurveBind :
|
|
public CRecordsetDynamicBind
|
|
{
|
|
DECLARE_DYNAMIC(CRecordsetCurveBind)
|
|
|
|
public:
|
|
CRecordsetCurveBind(CDatabase* pDatabase);
|
|
virtual ~CRecordsetCurveBind(void);
|
|
};
|
|
|
|
};
|