Search:

Type: Posts; User: Mr.Pointer

Search: Search took 0.01 seconds.

  1. Thank you for your suggestion, I will keep that...

    Thank you for your suggestion, I will keep that in mind. I'm still practicing and learning along the way, so "functors" and C++0x lambdas are things I've not covered yet. But, I will get to them...
  2. Thank you very much, that did the trick! It makes...

    Thank you very much, that did the trick! It makes a lot of sense too, now that I think of it.

    I applied it the idea to my actual program as well, and it's working :D
  3. template woes: incompatibility & inheritance issues with a function as paremeter

    I managed to isolate a problem I'm having to this example program:

    #include <iostream>
    using namespace std;

    //Simple inheritance
    class Parent {};
    class Child: public Parent {};

    //Functions
Results 1 to 3 of 3