I'm fairly new to programming even though I have some experience with Java, VB and now C++.
I'm currently studying software engineering at Uni and have been given the task of creating a banking application that has various facilities. The application requires a few classes (a few types of different bank accounts using inheritance, customer details, a transaction class) which has so far gone fine although I'm now struggling with the transaction class.
My question is, how do I make the transaction class interact with the account object? The functionality is there (as the account class has a withdraw method). Would this be through using pointers? Would it help if i posted my classes?