summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2TenantArray.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/T2DLL/T2TenantArray.h')
-rw-r--r--src/T2DLL/T2TenantArray.h21
1 files changed, 13 insertions, 8 deletions
diff --git a/src/T2DLL/T2TenantArray.h b/src/T2DLL/T2TenantArray.h
index a443c9f..6a2146b 100644
--- a/src/T2DLL/T2TenantArray.h
+++ b/src/T2DLL/T2TenantArray.h
@@ -1,22 +1,27 @@
#pragma once
#include "common.h"
+#include "T2ObjectArray.h"
-class T2TenantArray {
+class AFX_EXT_CLASS T2TenantArray : public T2ObjectArray {
public:
- T2TenantArray(unsigned int);
+ enum { kGroupSize = 128 };
+
+ T2TenantArray(unsigned int startID = 1000);
virtual ~T2TenantArray();
+ virtual void DispatchIdle(T2TowerDoc*, int);
T2Tenant* FindUnusedTenant();
- virtual void DispatchIdle(T2TowerDoc*, int);
int CalcMentenanceCost(T2TowerDoc*) const;
void TenantRemoved(unsigned int);
- T2Tenant* GetTenantByPID(unsigned long);
+ T2Tenant* GetTenantByPID(DWORD);
void BreakoutEmergency(T2TowerDoc*);
void RecoverRelatedTenantList(T2RegistedTenantDB*);
void Read(T2Archive&, T2TowerDoc*);
void Write(T2Archive&);
- T2Tenant* GetIndexTenant(int) {}
- T2TenantArray(const T2TenantArray&) {}
- T2TenantArray& operator=(const T2TenantArray&) {}
- void `default constructor closure'() {}
+ T2Tenant* GetIndexTenant(int i) { return &mTenants[i]; }
+
+protected:
+ friend class T2TenantArrayList;
+
+ T2Tenant *mTenants;
};