mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05: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
|