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