1
vote
6answers
423 views
Compile-time type based dispatch
Following techniques from 'Modern C++ Design', I am implementing a persistence library with various compile-time optimisations. I would like the ability to dispatch a function to a templated member …
1
vote
2answers
1k views
Function pointer to template class member functions
I have a templated class defined (in part) as
template <class T> MyClass
{
public:
void DoSomething(){}
};
If I want to call DoSomething from another clas …
2
votes
3answers
272 views
Compiler not creating templated ostream << operator
Hi,
I have a class, defined in a head as:
template <typename T> class MyClass
{
template <typename U> friend std::ostream& operator<<(std::ostream&a …
0
votes
Compile-time type based dispatch
I'm interested in doing this 'from first principles' as an educational curiosity. However, I will look at the Boost libraries.
In any case, I don't think is_base_of is any help - it does ex …
0
votes
Compile-time type based dispatch
Unfortunately I've been through that too (and it is, also, a runtime call ;) ) The compiler complains if you pass in non polymorphic or class types, in a similar way to before:
erro …
0
votes
Function pointer to template class member functions
You know, that is just what I needed to do. Bizzarly I had discounted it as a solution valid for my usecase early on, for reasons that now escape me. I think I was blinded by some metaprogramming s …
0
votes
C++: CRTP to avoid dynamic polymorphism
This Wikipedia answer has all you need. Namely:
template <class Derived> struct …
0
votes
How to detect whether there is a specific member variable in class?
Are the functions (x, X, y, Y) from an abstract base class, or could they be refactored to be so? If so you can use the SUPERSUBCLASS() macro from Modern C++ Design, along with ideas from the answe …
