How to automatically cast to children types in a vector<Parent*>?I'm now using this which completely meets my needs: [code] template <typename T, typename... Args> ...
How to automatically cast to children types in a vector<Parent*>?@mbozzi Thanks for the reply and explanation! I'm basically making a component system where there ...
How to take indefinite function arguments?I have a simple events system like this: [code] class Comp { typedef void (*cb)(); uno...
How to automatically cast to children types in a vector<Parent*>?@mbozzi Thanks! What about class C has a member function [code]void log2()[/code] that class A doe...
How to automatically cast to children types in a vector<Parent*>?[code] class A { public: void log() { cout << 0 << endl; } }; class B : public A ...
This user does not accept Private Messages