21 lines
242 B
C
21 lines
242 B
C
|
//
|
||
|
// 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
|