Search Results

0
votes

Framework to bind object properties to WTL controls

The Cocoa Bindings provide exactly what you want, but they are only available …
0
votes

rtf / doc / docx text extraction in program written in c++/qt

I recommend not to use COM as this would defeat the usage of a portable library like Qt in the first place. You might want to use the classic …
4
votes

Avoiding memory leaks while mutating c-strings

In order to avoid buffer overflows and memory leaks, you should always use C++ classes such as std::string in this case. Only the very last instance should convert the c …
6
votes

Can I use C++ features while extending Python?

It doesn't matter whether your implementation of the hook functions is implemented in C or in C++. In fact, I've already seen some Python extensions which make active use of C++ templates and even …
19
votes

How do I build a GUI in C++?

There are plenty of free portable GUI libraries, each with its own strengths and weaknesses: Qt …