23 lines
416 B
C++
23 lines
416 B
C++
#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
|