1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #if !defined(AFX_ADDCONTACT_H__DEA49077_50BF_49EF_8B92_45B904E31737__INCLUDED_)
- #define AFX_ADDCONTACT_H__DEA49077_50BF_49EF_8B92_45B904E31737__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // AddContact.h : header file
- //
- /////////////////////////////////////////////////////////////////////////////
- // AddContact dialog
- class AddContact : public CDialog
- {
- // Construction
- public:
- AddContact(CWnd* pParent = NULL); // standard constructor
- // Dialog Data
- //{{AFX_DATA(AddContact)
- enum { IDD = IDD_DLGaddcontact };
- CString m_name;
- CString m_phone;
- //}}AFX_DATA
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(AddContact)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- // Generated message map functions
- //{{AFX_MSG(AddContact)
- virtual void OnOK();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_ADDCONTACT_H__DEA49077_50BF_49EF_8B92_45B904E31737__INCLUDED_)
|