You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
416 B
22 lines
416 B
#ifndef _export_h
|
|
#define _export_h
|
|
|
|
class CXEventArray;
|
|
class CXEventSource;
|
|
|
|
class CDlgExport : private CFileDialog
|
|
{
|
|
public:
|
|
CDlgExport();
|
|
INT_PTR DoModal(CXEventArray& aEvents);
|
|
|
|
private:
|
|
void GetFilters(LPTSTR pszDst);
|
|
SCODE ExportEvents(CXEventArray& aEvents, CString& sPath, LONG iFileType);
|
|
|
|
// Private member data.
|
|
CString m_sFileTitle;
|
|
};
|
|
|
|
|
|
#endif //_export_h
|