Скачиваний:
68
Добавлен:
01.05.2014
Размер:
1.3 Кб
Скачать
// TheOneView.h : interface of the CTheOneView class
//


#pragma once

class CTheOneSet;

class CTheOneView : public CRecordView
{
protected: // create from serialization only
	CTheOneView();
	DECLARE_DYNCREATE(CTheOneView)

public:
	enum{ IDD = IDD_THEONE_FORM };
	CTheOneSet* m_pSet;

// Attributes
public:
	CTheOneDoc* GetDocument() const;

// Operations
public:

// Overrides
	public:
	virtual CRecordset* OnGetRecordset();
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	virtual void OnInitialUpdate(); // called first time after construct
	virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
	virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
	virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);

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

protected:

// Generated message map functions
protected:
	DECLARE_MESSAGE_MAP()
public:
	afx_msg void OnCinemaAdd();
};

#ifndef _DEBUG  // debug version in TheOneView.cpp
inline CTheOneDoc* CTheOneView::GetDocument() const
   { return reinterpret_cast<CTheOneDoc*>(m_pDocument); }
#endif

Соседние файлы в папке TheOne