0
votes
What are some good compilers to use when learning C++?
I say GCC for simple things because for a more complicated project the build process isn't so easy
True, but I don't think understanding the build process of a large project is …
0
votes
Boost: Fire and forget asynchronous function call?
Perhaps you want to emit a signal?
I really liked Qt's signals and slots functionality, and I know Boost has signals/slots as well. I've never used signals/slots in Boost, though.
…
1
vote
What’s the best stable C++ IDE with a GUI that runs on linux?
I like SciTE on linux and windows.
It's very lightweight, and customizable.
…
13
votes
What is the most spectacular way to shoot yourself in the foot with C++?
In C/C++, if you start a numeric constant with a zero, it's interpreted as octal:
int a = 123; // Decimal 123
int b = 0123; // Octal 123, decimal 83
I …
0
votes
What’s safe for a C++ plug-in system?
Qt has a very nice system for plugins that I've used in the past. It uses Qt's meta-object system to overcome many of the problems typica …
2
votes
C++ RTTI Viable Examples
I worked on an aircraft simulation once, that had what they (somewhat confusingly) referred to as a "Simulation Database". You could register variables like floats or ints or strings in it, and pe …
4
votes
Should network packet payload data be aligned on proper boundries?
You look into Google protocol buffers, or Boost::serialize like another poster said.
If you want …
1
vote
Should network packet payload data be aligned on proper boundries?
If you don't have natural alignment in the structures, compilers will usually insert padding so that alignment is proper. If, however, you use pragmas to "pack" the structures (remove the padding) …
14
votes
Qt vs WPF/.NET
There are Qt bindings for Python, C#, Ruby, Java, Ada, Pascal, Perl, PHP, and Haskell, however, they aren't sup …
3
votes
is there a way to combine Qt-Creator + Boost Library?
I'm pretty sure Qt Creator doesn't require the use of Qt in your application. If you don't want to link to any Qt libraries, or run MOC on any header files (which you only need to do for subclasse …
2
votes
Educational IDE to start programming in C++?
If you are using both windows and linux (as your comment indicates), I'd recommend Qt Creator. Qt is cross platform …
0
votes
A good way to do a fast divide in C++?
I are looping 10,000 times simply to make the code take long enough to measure the time easily? Or do you have 10000 numbers to divide by the same number? If the former, put the "y_div = 1.0 / y; …
3
votes
Determining what object files have caused .dll size increase [C++]
If gcc, objdump. If visual studio, dumpb …
1
vote
What strategies have you used to improve build times on large projects?
In general large C++ projects that I've worked on that had slow build times were pretty messy, with lots of interdependencies scattered through the code (the same include files used in most cpps, f …
1
vote
Header dependencies in qmake using MSVC Express
Are your header files listed in the HEADERS variable in your .pro file? I think listing header files in HEADERS is also required to get classes within them MOC'ed.
[edit]N …
