blob: d1e943556b0ec5df64b948de67cc88a968380b3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef T2DLL_WALKERDLG_H
#define T2DLL_WALKERDLG_H
#include "../common.h"
#include "T2Dialog.h"
class WalkerDlg : public T2Dialog {
public:
WalkerDlg();
virtual ~WalkerDlg();
void Setup(T2TowerDoc *inDoc, HINSTANCE inInstance, CWnd *inParentWnd, const POINT &inPt, T2ImageObj *inImageObj);
void Revert();
void Save();
protected:
virtual int OnT2DialogCommand(UINT cmd, long data);
virtual void OnT2Create();
T2TowerDoc *mDocument;
int mFC;
};
#endif
|