blob: c0dd44412e9dedf54eacaf8ff87f75c401832406 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef T2DLL_MOVERSEARCHDLG_H
#define T2DLL_MOVERSEARCHDLG_H
#include "../common.h"
#include "T2Dialog.h"
class MoverSearchDlg : public T2Dialog {
public:
MoverSearchDlg();
virtual ~MoverSearchDlg();
void Create(T2TowerDoc *inDoc, HINSTANCE inInstance, CWnd *inParentWnd, const POINT &inPt);
void DoFind();
void DoDelete();
protected:
virtual void OnT2Create();
T2TowerDoc *mDocument;
};
#endif
|