⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dbsampledoc.h

📁 Visual C++ 2005的源代码
💻 H
字号:
// DBSampleDoc.h : interface of the CDBSampleDoc class
//


#pragma once
#include "ProductSet.h"
#include "orderset.h"
#include "customerset.h"
#include "StockSet.h"


class CDBSampleDoc : public CDocument
{
protected: // create from serialization only
	CDBSampleDoc();
	DECLARE_DYNCREATE(CDBSampleDoc)

// Attributes
public:
	CProductSet m_DBSampleSet;

// Operations
public:

// Overrides
public:
	virtual BOOL OnNewDocument();

// Implementation
public:
	virtual ~CDBSampleDoc();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
	DECLARE_MESSAGE_MAP()
public:
  COrderSet m_OrderSet;
public:
  CCustomerSet m_CustomerSet;
public:
   CStockSet m_StockSet;
};


⌨️ 快捷键说明

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