blob: 24dc2b4bc8d1bb7f839f63374a862e59678500f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef T2DLL_T2SEARCHDIALOG_H
#define T2DLL_T2SEARCHDIALOG_H
#include "../common.h"
#include "T2Dialog.h"
class AFX_CLASS_EXPORT T2SearchDialog : public T2Dialog {
public:
T2SearchDialog(T2TowerDoc* inDoc);
virtual ~T2SearchDialog();
virtual BOOL OnT2DialogCommand(WPARAM inWParam, LPARAM inLParam);
protected:
T2TowerDoc *mDocument;
PeopleSearchDlg *mPeopleSearchDlg;
TenantSearchDlg *mTenantSearchDlg;
MoverSearchDlg *mMoverSearchDlg;
int m108;
T2ImageObj *mImageObj;
T2BitImage *mImage;
};
#endif
|