C++ static virtual members?
- by cvb
Is it possible in C++ to have a member function that is both static and virtual? Apperantly, there isn't a straight-forward way to do it (static virtual member(); is a complie error), but at least a way to acheive the same effect?
I.E:
struct Object
{
struct TypeInformation;
static virtual const TypeInformation…