Well I finally got the guy's library of C++ code working last night! (almost).
There was one line of code that I had to comment but he's sent me a fix for it this morning.
It means that I can basically use his 20k line library of code without having to change any of it!
I've thought of a class structure that will make it very easy to use too so all is good!
One question I've got though...
If I have a class that has a method in it called foo() and in that method it has a line run bar().
i.e. in TemplateClass
and then I subclass the class and overwrite bar...
i.e. in ActualClass
If I then create an ActualClass object and run [myActualClass foo].
Which version of bar will it run. Which NSLog would I see?