Well first off let me say hi to everyone, this is my first post on the exciting journey to becoming a c++ programmer.... well im excited anyway- iv been programming in delphi for about 10 years now, so I know the principles, its just to now port them over, but im stuck with trying to interpret a line of code I came across, if someone could point me in the right direction I would appreciate it:
Did you read already about pointers (and classes)?
straight forward -> here means:
(*local).evaluate(...)
what is does is:
local points to a certain object: you "get" that object by doing *local - And now you want that object to execute the "evaluate" memberfunction..