#ifndef __NEWFOLDERDLG_H_ #define __NEWFOLDERDLG_H_ #include typedef struct _SFolderInfo SFolderInfo; class CNewFolderDlg : public CDialog { public: enum { IDD = IDD_DLGNEWFOLDER }; CNewFolderDlg(CWnd* pParent = NULL); // standard constructor virtual ~CNewFolderDlg(); int CheckSpecialChar(CString& str); int CheckFileNameIsSame(const CString& strName); protected: virtual BOOL OnInitDialog(); virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support afx_msg void OnOK(); afx_msg void OnCancel(); afx_msg void OnDestroy(); DECLARE_MESSAGE_MAP() public: CString m_strFolderName; std::vector* m_pVFolder; //Îļþ¼Ð }; #endif