mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-28 18:51:16 +00:00
17 lines
306 B
C++
17 lines
306 B
C++
#ifndef AFX_COMMON_H
|
|
#define AFX_COMMON_H
|
|
|
|
#include "compat.h"
|
|
|
|
#include <afxwin.h>
|
|
|
|
class CCommonDialog : public CDialog {
|
|
public:
|
|
CCommonDialog(UINT nIDTemplate, CWnd* pParentWnd = NULL) : CDialog(nIDTemplate, pParentWnd) {}
|
|
|
|
void BeginModalState() override;
|
|
void EndModalState() override;
|
|
};
|
|
|
|
#endif
|