12345678910111213141516171819202122232425262728293031323334353637383940 |
- #if !defined(AFX_COMPAREPHOTO_H__767BF3C3_BAEE_44AD_B16A_A9A11C2428C9__INCLUDED_)
- #define AFX_COMPAREPHOTO_H__767BF3C3_BAEE_44AD_B16A_A9A11C2428C9__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif
- /////////////////////////////////////////////////////////////////////////////
- class CComparePhoto : public CDialog
- {
- Image *m_pImage;
- Image *m_pImage2;
- Image *m_pImage3;
- Image *m_pImage4;
- public:
- CComparePhoto(CWnd* pParent = NULL); // standard constructor
- CString m_path1;
- CString m_path2;
- CString m_path3;
- CString m_path4;
- enum { IDD = IDD_DLGComparePhoto };
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- protected:
- virtual BOOL OnInitDialog();
- afx_msg void OnPaint();
- afx_msg void OnDestroy();
- afx_msg BOOL OnEraseBkgnd(CDC* pDC);
- DECLARE_MESSAGE_MAP()
- };
- #endif
|