diff options
author | Ash Wolf <ninji@wuffs.org> | 2023-06-14 00:50:34 +0100 |
---|---|---|
committer | Ash Wolf <ninji@wuffs.org> | 2023-06-14 00:50:34 +0100 |
commit | 37e364b2c6cc7487a1c888d256a73e5337bb7189 (patch) | |
tree | eaf6e857382eef16c2dd940eb4125536fbe068bd /src/T2DLL/T2GuestroomTable.cpp | |
download | t2win-37e364b2c6cc7487a1c888d256a73e5337bb7189.tar.gz t2win-37e364b2c6cc7487a1c888d256a73e5337bb7189.zip |
initial commit
Diffstat (limited to '')
-rw-r--r-- | src/T2DLL/T2GuestroomTable.cpp | 115 |
1 files changed, 115 insertions, 0 deletions
diff --git a/src/T2DLL/T2GuestroomTable.cpp b/src/T2DLL/T2GuestroomTable.cpp new file mode 100644 index 0000000..e7dbf5b --- /dev/null +++ b/src/T2DLL/T2GuestroomTable.cpp @@ -0,0 +1,115 @@ +#include "T2GuestroomTable.h" + +/*virtual*/ int T2GuestroomTable::OnT2DlgItemCreate(CREATESTRUCTA*) { +} + +T2GuestroomTable::T2GuestroomTable(T2TowerDoc*, T2ImageObj*, CPalette*) { +} + +/*virtual*/ T2GuestroomTable::~T2GuestroomTable() { +} + +/*virtual*/ void T2GuestroomTable::Add(T2GuestroomItem*) { +} + +/*virtual*/ void T2GuestroomTable::DrawCellSelf(CDC*, const TableCellT&, int) { +} + +/*virtual*/ void T2GuestroomTable::DrawCell(CDC*, const TableCellT&) { +} + +/*virtual*/ void T2GuestroomTable::ClickCell(const TableCellT&, const CPoint&) { +} + +/*virtual*/ void T2GuestroomTable::AddList(T2Tenant*, int) { +} + +/*virtual*/ void T2GuestroomTable::ValidRelation() { +} + +/*virtual*/ void T2GuestroomTable::RevertRelation() { +} + +/*virtual*/ void T2GuestroomTable::ResetRoomList(int) { +} + +/*virtual*/ int T2GuestroomTable::CountRooms(int, int) { +} + +/*virtual*/ void T2GuestroomTable::ToggleRelation(const TableCellT&, int) { +} + +/*virtual*/ void T2GuestroomTable::SetInMoneyIndex(int) { +} + +/*virtual*/ int T2GuestroomTable::GetInMoneyIndex(int) { +} + +/*virtual*/ int T2GuestroomTable::CalcInMoney(int) { +} + +void T2GuestroomTable::UpdateTenantEstimation(T2TowerDoc*, int) { +} + +/*virtual*/ void T2GuestroomTable::OnT2DlgItemLButtonDown(unsigned int, CPoint) { +} + +/*virtual*/ int T2GuestroomTable::OnT2DlgItemEraseBkgnd(CDC*) { +} + +T2GuestroomItem::T2GuestroomItem(T2Tenant*, int, long) { +} + +int T2GuestroomItem::GetRoomNumber() { +} + +int T2GuestroomItem::GetRoomStatus() { +} + +int T2GuestroomItem::GetCapacity() { +} + +int T2GuestroomItem::GetRoomType() { +} + +/*static*/ int T2GuestroomItem::GetRoomType(T2Tenant*) { +} + +void T2GuestroomItem::ToggleRelation(int) { +} + +int T2GuestroomItem::IsRelation() { +} + +int T2GuestroomItem::WasRelation() { +} + +void T2GuestroomItem::ValidRelation() { +} + +void T2GuestroomItem::InvalidRelation() { +} + +void T2GuestroomItem::RevertRelation() { +} + +int T2GuestroomItem::IsFreeRelation() { +} + +int T2GuestroomItem::IsStay() { +} + +void T2GuestroomItem::SetInMoneyIndex(int) { +} + +int T2GuestroomItem::GetInMoneyIndex() { +} + +int T2GuestroomItem::GetInMoney() { +} + +int T2GuestroomItem::GetOutMoney() { +} + +void T2GuestroomItem::UpdateTenantEstimation(T2TowerDoc*) { +} |