#include #include #include "Transaction.h" //This is a header files that declares the class account and their member variables and functions class Account //Declaring the class { private: int balance; std::vector log; //We are not using namespace std here as the compiler is going to paste the code into the main cpp file. // As a rule of thumb: do not include the namespaces into a header files public: Account(); //This is a constructor std::vector Report(); //Functions that is going to return a vector of strings bool Deposit(int amt); //Deposit function bool Withdraw(int amt); //Withdraw function };