51 lines
1009 B
C++
51 lines
1009 B
C++
// EdIRPrtF.hpp : header file
|
|
//
|
|
|
|
#ifndef _EDIRPRTF_HPP_
|
|
#define _EDIRPRTF_HPP_
|
|
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif // _MSC_VER >= 1000
|
|
|
|
#include <AfxExt.h>
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CPA_EdIR_PrintFrame frame
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
class CPA_EdIR_DiagView;
|
|
|
|
class CPA_EdIR_PrintFrame : public CFrameWnd
|
|
{
|
|
private:
|
|
DECLARE_DYNCREATE(CPA_EdIR_PrintFrame)
|
|
|
|
public:
|
|
CPA_EdIR_PrintFrame();
|
|
|
|
// Attributes
|
|
|
|
// Operations
|
|
public:
|
|
BOOL m_fn_bCreate(CPA_EdIR_DiagView *,CString,CRect);
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CPA_EdIR_PrintFrame)
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
virtual ~CPA_EdIR_PrintFrame();
|
|
|
|
// Generated message map functions
|
|
//{{AFX_MSG(CPA_EdIR_PrintFrame)
|
|
// NOTE - the ClassWizard will add and remove member functions here.
|
|
//}}AFX_MSG
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
#endif //_EDIRPRTF_HPP_
|