12345678910111213141516171819202122232425262728293031323334353637383940 |
- /////////////////////////////////////////////////////////////////////////////
- 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()
- };
|