0
votes
How to generate a stacktrace when my gcc C++ app crashes
On Linux/unix/MacOSX use core files (you can enable them with ulimit or compatible system call). …
15
votes
What are the differences between struct and class in C++
Class' members are private by default. Struct's members are public by default. Besides that there are no other differences. Also see …
2
votes
Why should I ever use inline code?
Inline differs from macros in that it's a hint to the compiler (compiler may decide not to inline the code!) and macros are source code text generation before the compilation and as such are "force …
2
votes
How do I know I reached a file’s maximum size when using ofstream?
You can check if the bad bit is set. Also, using …
3
votes
How to redirect data to stdin within a single executable?
rdbuf does exactly what you want. You can open a file for reading and replace cin's rdbuf with the one from t …
1
vote
Creating, opening and printing a word file from C++
When you have the file and just want to print it, then look at this entry at Raymond Chen's blog. You c …
9
votes
Limiting range of value types in C++
You can do this using templates -- try something like this:
#include <boost/static_assert.hpp>
template< typename T, int min, int max >class LimitedValue {
template&l …
0
votes
0
votes
How can I tell if a Windows application (command line or GUI) is running on locked workstation or while user is logged out
Check this article ("Detecting session state changes, such as a locked workstation") by Raymond Chen. …
2
votes
C++ class initialisation containing class variable initialisation
Because, in the constructor's body ("within the curly brackets") the member variables are already default-constructed. That may have some performance implications, when you have a member variable o …
1
vote
How can I “unuse” a namespace?
Quick experiment with Visual Studio 2005 shows that you can enclose those headers in your own named namespace and then use what you need from this namespace (but don't use …
5
votes
Best open XML parser for C++
TiCPP is a "more c++" version of TinyXML.
'TiCPP' is short for the official name TinyXML++. It is a completely ne …
0
votes
How do I disable and then enable the Retry button in a MessageBox (C++)?
Since Vista you can use taskdialog -- a more sophisticated dialog than a simple message box. More info and links …
-1
votes
What is the most hard to understand piece of C++ code you know?
I vote for some black-magic-hackerish template metaprogramming (unfortunately don't have any on hand to post it).
…
5
votes
C++: what regex library should I use?
C++ has a builtin regex library since TR1. AFAIK Boost's regex library is very compatible with it and can be used as a replacement, if your standard library doesn't provide TR1.
…
