mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-29 03:01:15 +00:00
24 lines
451 B
C++
24 lines
451 B
C++
#ifndef AFX_COMMON_H
|
|
#define AFX_COMMON_H
|
|
|
|
#include <afxwin.h>
|
|
|
|
#include "compat.h"
|
|
|
|
class CSerializer {
|
|
public:
|
|
void Serialize(CArchive& ar);
|
|
void AssertValid() const;
|
|
void Dump(CDumpContext& dc) const;
|
|
};
|
|
|
|
class CCommonDialog : public CDialog {
|
|
public:
|
|
CCommonDialog(UINT nIDTemplate, CWnd* pParentWnd = NULL) : CDialog(nIDTemplate, pParentWnd) { }
|
|
|
|
void BeginModalState() override;
|
|
void EndModalState() override;
|
|
};
|
|
|
|
#endif
|