#include "Transaction.h" using namespace std; Transaction::Transaction(int amt, string t) :amount(amt), type(t) {} string Transaction::Report() { string report; report = " "; report += type; report += " "; report += to_string(amount); return report; }