First off, thank you all so much for your help and advice so far.
Yes, I am learning C++ as I go -and I find the best way is just to jump right in the deep end.
I have been programming in C++ for about 6 months now and get the procedural stuff. I also have a BASIC understanding of pointers, classes and linked lists and so on -I have played around with the old Clock::setTime() from the two text books I have, and they have been holding my hand every step of the way so far.
The thing is, I need just a little help please.
My code is here
https://gist.github.com/4166189...I am using SFML 2.0RC, and I have stripped the code in that post to the bare bones of exactly what is troubling me ...that is I have removed the grand bulk of the funtions and so on...
I have asked here before, but this time I have refined my question somewhat.
Lines 10, 12, and 14 - 17 of LoadMaps.cpp
Is the function definition correct? I think I should be using the -> operator not the . operator though I can't seem to get the syntax right for the prototype.Line 7 of LoadMaps.h
Is this the correct information if I want to pass the addresses of my data by reference? Or are the ampisands not required because the pointers are addresses?Line 28 of main.cpp
How should I call the function. Basically yes, I am asking for the correct syntax, and for you to write it for me if you will. As for understanding it, I will get there when I see it working =]
Thank you so very much for your patience.