12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- #if !defined(AFX_SELPROVIDER_H__D45629EE_2DA6_49EA_A720_11810E29D0DD__INCLUDED_)
- #define AFX_SELPROVIDER_H__D45629EE_2DA6_49EA_A720_11810E29D0DD__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // SelProvider.h : header file
- //
- /////////////////////////////////////////////////////////////////////////////
- // SelProvider dialog
- #if USE_SHARE_FLORD
- typedef struct _STIamgeDirectory__
- {
- CString strSelName; // 选中的景点名;
- CStringArray strAryImagePath; // 选中景点的所有共享相片路径集合;
- }STImageDirectory,*pSTImageDirectory;
- #endif
- class SelProvider : public CDialog
- {
- // Construction
- public:
- SelProvider(CWnd* pParent = NULL); // standard constructor
- CString m_provider;
- CStringArray *m_pArray;
- int m_mode;
- // Dialog Data
- //{{AFX_DATA(SelProvider)
- enum { IDD = IDD_DLGSelProvider };
- CComboBox m_comboprovider;
- //}}AFX_DATA
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(SelProvider)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- // Generated message map functions
- //{{AFX_MSG(SelProvider)
- virtual BOOL OnInitDialog();
- virtual void OnOK();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- public:
- #if USE_SHARE_FLORD
- CArray<STImageDirectory*,STImageDirectory*> *m_aryImageDirectory;
- #endif
- };
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_SELPROVIDER_H__D45629EE_2DA6_49EA_A720_11810E29D0DD__INCLUDED_)
|