#include
#include
using namespace std;
using EatPtr = function;
using PlayPtr = function;
struct VirtualTable {
EatPtr m_eat;
PlayPtr m_play;
};
struct base {
VirtualTable m_table;
};
struct DeriveA {
base m_base;
};
struct DeriveB {
base m_base;
};
void baseEat() {
cout << "base eat" << endl;
}
void basePlay() {
cout << "base play" << endl;
}
void DeriveAEat() {
cout << "derive a eat" << endl;
}
void DeriveAPlay() {
cout << "derive a play" << endl;
}
void DeriveBEat() {
cout << "derive b eat" << endl;
}
void DeriveBPlay() {
cout << "derive b play" << endl;
}
int main() {
DeriveA a;
DeriveB b;
a.m_base.m_table.m_eat = DeriveAEat;
a.m_base.m_table.m_play = DeriveAPlay;
b.m_base.m_table.m_eat = DeriveBEat;
b.m_base.m_table.m_play = DeriveBPlay;
base* basea = (base*)&a;
basea->m_table.m_eat();
basea->m_table.m_play();
base* baseb = (base*)&b;
baseb->m_table.m_eat();
baseb->m_table.m_play();
return 0;
}