budget/src/money/account.h

30 lines
475 B
C
Raw Normal View History

2022-08-04 18:22:48 -05:00
//
// Created by quentin on 8/4/22.
//
#ifndef BUDGET_ACCOUNT_H
#define BUDGET_ACCOUNT_H
#include "transaction.h"
#include "earning.h"
#include <list>
#include <string>
class Account {
2022-08-04 18:22:48 -05:00
public:
Account(std::list<Transaction> transactions, std::list<Earning> earnings, bool withdrawable,
std::string name);
2022-08-04 18:22:48 -05:00
Account();
2022-08-04 18:22:48 -05:00
private:
std::list<Transaction> transactions;
std::list<Earning> earnings;
bool withdrawable;
std::string name;
2022-08-04 18:22:48 -05:00
};
#endif //BUDGET_ACCOUNT_H