diff options
Diffstat (limited to 'src/T2DLL/T2OutObjArray.h')
-rw-r--r-- | src/T2DLL/T2OutObjArray.h | 26 |
1 files changed, 16 insertions, 10 deletions
diff --git a/src/T2DLL/T2OutObjArray.h b/src/T2DLL/T2OutObjArray.h index 504f1d7..b3791eb 100644 --- a/src/T2DLL/T2OutObjArray.h +++ b/src/T2DLL/T2OutObjArray.h @@ -1,18 +1,24 @@ #pragma once #include "common.h" +#include "T2ObjectArray.h" +#include "T2OutObj.h" -class T2OutObjArray { +class AFX_EXT_CLASS T2OutObjArray : public T2ObjectArray { public: - T2OutObjArray(unsigned int); + enum { kGroupSize = 64 }; + + T2OutObjArray(unsigned int inStartID = 1000); virtual ~T2OutObjArray(); + virtual void DispatchIdle(T2TowerDoc* inDoc, int); T2OutObj* FindUnusedOutObj() const; - virtual void DispatchIdle(T2TowerDoc*, int); - int CalcMentenanceCost(T2TowerDoc*) const; - void Read(T2Archive&, T2TowerDoc*); - void Write(T2Archive&); + int CalcMentenanceCost(T2TowerDoc* inDoc) const; + void Read(T2Archive& inArchive, T2TowerDoc* inDoc); + void Write(T2Archive& inArchive); + + T2OutObj* GetIndexOutObj(int i) { return &mOutObj[i]; } + +protected: + friend class T2OutObjArrayList; - T2OutObj* GetIndexOutObj(int) {} - T2OutObjArray(const T2OutObjArray&) {} - T2OutObjArray& operator=(const T2OutObjArray&) {} - void `default constructor closure'() {} + T2OutObj mOutObj[kGroupSize]; }; |