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/T2Settlement.cpp | |
download | t2win-37e364b2c6cc7487a1c888d256a73e5337bb7189.tar.gz t2win-37e364b2c6cc7487a1c888d256a73e5337bb7189.zip |
initial commit
Diffstat (limited to '')
-rw-r--r-- | src/T2DLL/T2Settlement.cpp | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/src/T2DLL/T2Settlement.cpp b/src/T2DLL/T2Settlement.cpp new file mode 100644 index 0000000..5b3058b --- /dev/null +++ b/src/T2DLL/T2Settlement.cpp @@ -0,0 +1,58 @@ +#include "T2Settlement.h" + +T2Settlement::T2Settlement(T2TowerDoc*, int) { +} + +T2Settlement::T2Settlement(T2TowerDoc*, T2Archive&) { +} + +T2Settlement::~T2Settlement() { +} + +T2Archive& T2Settlement::Write(T2Archive&) const { +} + +void T2Settlement::DoPay(int, short) { +} + +void T2Settlement::DoPayTool(int, short, T2ToolDef*) { +} + +void T2Settlement::EmitPayToolMessage(T2TowerDoc*, T2ToolDef*, const CString&, int, int) { +} + +T2DateTime* T2Settlement::GetTimeLimitOfMessage(T2TowerDoc*, T2ToolDef*, int) { +} + +void T2Settlement::SetTimeLimitOfMessage(T2TowerDoc*, T2ToolDef*, int, T2DateTime*) { +} + +T2DateTime* T2Settlement::FindCategoryTimeLimit(T2TowerDoc*, T2ToolDef*) { +} + +void T2Settlement::LinkCategoryTimeLimit(T2TowerDoc*, T2ToolDef*, T2DateTime*) { +} + +/*static*/ T2DateTime* T2Settlement::CalcTimeLimitOfMessage(T2DateTime*, int) { +} + +int T2Settlement::GetCurrentFunds() const { +} + +int T2Settlement::GetPreviousFunds() const { +} + +int T2Settlement::GetTotalSettlement(short) const { +} + +int T2Settlement::GetToolSettlement(T2ToolDef*) const { +} + +int T2Settlement::GetCategorySettlement(int) const { +} + +void T2Settlement::Initialize(T2TowerDoc*, int) { +} + +void T2Settlement::Update() { +} |