#ifndef T2DLL_TENANTSEARCHDLG_H #define T2DLL_TENANTSEARCHDLG_H #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; }; #endif