FinanceSim 0.1.0
Financial Simulation Library
Loading...
Searching...
No Matches
checking_account.cpp
Go to the documentation of this file.
2
3namespace financesim {
4
5CheckingAccount::CheckingAccount(std::string id, std::string name,
6 double initial_balance,
7 std::string routing_tag,
8 Schedule schedule)
9 : AccountBase(std::move(id), std::move(name),
10 std::move(routing_tag), initial_balance,
11 schedule) {
12}
13
14} // namespace financesim
CheckingAccount(std::string id, std::string name, double initial_balance=0.0, std::string routing_tag="default", Schedule schedule=make_account_schedule())