diff options
Diffstat (limited to '')
-rw-r--r-- | src/T2DLL/T2PeopleTimeZoneList.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/T2DLL/T2PeopleTimeZoneList.h b/src/T2DLL/T2PeopleTimeZoneList.h new file mode 100644 index 0000000..918471b --- /dev/null +++ b/src/T2DLL/T2PeopleTimeZoneList.h @@ -0,0 +1,30 @@ +#pragma once +#include "common.h" + +class T2PeopleTimeZoneList { +public: + T2PeopleTimeZoneList(unsigned int, unsigned int, T2WorldDef*); + T2PeopleTimeZoneList(T2Archive&, T2WorldDef*); + virtual ~T2PeopleTimeZoneList(); +protected: + void Add(T2PeopleTypeArray*); +public: + void Add(T2PeopleType*, T2PoolDefDemandElem*); + void Init(unsigned int, float); + void IncHour(float); +protected: + T2PeopleTypeArray* GetItem(int) const; + T2PeopleTypeArray* CurrentItem() const; +public: + int Find(T2TenantMemberDef*, int, unsigned int, int) const; + int Call(T2TenantMemberDef*, int, unsigned int, T2PeopleType&); + void DispatchRestore(T2PeopleType&); + void DispatchAdd(T2PeopleType*); + void Write(T2Archive&); + + T2PeopleTimeZoneList(const T2PeopleTimeZoneList&) {} + T2PeopleTimeZoneList& operator=(const T2PeopleTimeZoneList&) {} + int IsFixed() const {} +protected: + int GetNumOfTimeZone() const {} +}; |