blob: 1e0c77f75193540ace0704eb21461e61a49a7fc4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include "common.h"
#include "T2EquipInfoDialog.h"
class AFX_CLASS_EXPORT T2TenantInfoDialog : public T2EquipInfoDialog {
public:
T2TenantInfoDialog(T2Tenant* inTenant);
virtual ~T2TenantInfoDialog();
T2Tenant* GetTenant() const { return (T2Tenant *) mObject; }
T2TenantDef* GetTenantDef() const { return (T2TenantDef *) mEquipDef; }
};
|