http://lambda2kdjjd56rg7bca7lcovar25jc7fmswxa2e3b5ymmggctmkv3id.onion/All/index163
I make virtual getter functions to get pointers to the members, and if the member is not contained, NULL is returned, so the caller should check the pointer before use. #include <stdio.h> #include <stdint.h> class A { public: A(int8_t a_data_) : a_data(a_data_) {} int8_t a_data; }; class B { public: B(int8_t b_data_) : b_data(b_data_) {} int8_t b_data; }; class C : public B { public: C(int8_t b_data_, int32_t c_data_) : B(b_data_),...