-
One of the more basic and fundamental idioms of C++ programming is that of RAII. It’s so simple and fundamental that C++ seems to be the only programming language that supports this idiom. From Wikipedia, RAII is:
Resource Acquisition Is Initialization, often referred to by the acronym RAII (or...
-
Sometimes you want to be able to write applications in C++ and expose a way of easily extending it by offering a scripting interface embedded to your application. Why re-invent the wheel when you can embed existing programming languages like Python into your C++ application? This article covers how you...