News

So I've been playing with C++ and XML (Xerces C++ DOM), and am working on a simple prototype class factory that creates instances of various classes based on the contents of a given XML file. To ...
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 ...
In C++, a constructor is a special class member function that provides guaranteed initialization for objects of its class type. Since the beginning of the year, I've been explaining what constructors ...