summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2TenantInfoDialog.h
blob: acace7cf5415b8ed01ee8ba4b8b6eeeb03a4357d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef T2DLL_T2TENANTINFODIALOG_H
#define T2DLL_T2TENANTINFODIALOG_H
#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; }
};
#endif