blob: c94f72eae814c046caf74cca84ee4e56aa4d0268 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef T2DLL_T2TENANTCEARRAY_H
#define T2DLL_T2TENANTCEARRAY_H
#include "../common.h"
#include "T2CrossEquipArray.h"
class AFX_CLASS_EXPORT T2TenantCEArray : public T2CrossEquipArray {
public:
T2TenantCEArray();
virtual ~T2TenantCEArray();
unsigned int GetFloorID(int);
void SetFloorID(unsigned int);
virtual DWORD GetCEClassID() { return 'TCEA'; }
};
#endif
|