Embedded C developers shy away from C++ out of concern for performance. The class construct is one of their main concerns. My previous article Code Craft – Embedding C++: Classes explored whether ...
class Thing { public: NormalizeName(); NormalizeAge(); private: OurString* iName; OurDate iCreationDate; } class Person : Thing { // stuff specific to people } class House : Thing { // stuff specific ...