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

📄 dbsimpleupdatedoc.h

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


#pragma once
#include "OrderDetailsSet.h"
#include "orderset.h"
#include "order.h"


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

// Attributes
public:
	COrderDetailsSet m_DBSimpleUpdateSet;

// Operations
public:

// Overrides
public:
	virtual BOOL OnNewDocument();

// Implementation
public:
	virtual ~CDBSimpleUpdateDoc();
#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:
  bool AddOrder(void);
public:
  void AddOrderDetails(long ID, double price, int quantity, float discount);
public:
  COrder m_Order;
};


⌨️ 快捷键说明

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