Category Archives: C++

How to Add QT Support to an Existing Visual Studio Project

QT is a cool GUI framework and the Visual Studio add-in is pretty neat… it allows you to code and deploy C++/QT apps without having to deal with QT’s include directories, linker dependencies, environment variables and all that jazz. You … Continue reading

Posted in C++ | Tagged , , , , , , , | 6 Comments

Adventures with Templates – Basic C++ Type Introspection without RTTI

Some rambling about C++ templating, template metaprogramming, reflection and SFINAE. And finally an experimental (read: limited and impractical) SFINAE solution for basic reflection Continue reading

Posted in C++ | Tagged , , , , , , | 4 Comments

C++ GUI Libraries, QT and the Signals/Slots Paradigm

A bit about C++ GUI libraries, a bit about QT and a bit about its renowned Signals/Slots paradigm Continue reading

Posted in C++ | Tagged , , , , , , , , , | Leave a comment

C/C++ Assertions and Defining Your Own Assert Macro

This post talks about the C runtime assert statement, how it should be used and some of its pitfalls. A custom C++ assert macro is provided and discussed. Continue reading

Posted in C, C++ | Tagged , , , , , , , , | 1 Comment