budget/src/money/account.h

21 lines
242 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
class account {
public:
account(const bool withdrawable);
const bool withdrawable;
private:
std::list<> assets;
};
#endif //BUDGET_ACCOUNT_H