2
votes
6answers
1k views
What is the best way to inspect STL containers in Visual Studio debugging?
If I have a std::vector or std::map variable, and I want to see the contents, it's a big pain to see the nth element while debugging. Is there a plugin, or some trick to making it easier to watch S …
0
votes
2answers
606 views
Example for boost shared_mutex (multiple reads/one write)?
I have a multithreaded app that has to read some data often, and occasionally that data is updated. Right now a mutex keeps access to that data safe, but it's expensive because I would like multipl …
2
votes
LoadLibrary fails when including a specific file during DLL build.
Is it possible that header includes a #pragma comment(lib,"somelibrary.lib") statement somewhere? If so it's automatically trying to import a library.
To troubleshoot this I'd start by look …
0
votes
Good, simple configuration library for large c++ project?
I've often used a simple wrapper around pugxml. I find that creating a configuration class with parameter validation fo …
1
vote
How do I convert a big-endian struct to a little endian-struct?
I like to implement a SwapBytes method for each data type that needs swapping, like this:
inline u_int ByteSwap(u_int in)
{
u_int out;
char *indata = (char *)∈
ch …
2
votes
C++ OpenGL application as a web service
I had a similar project/question, that although it wasn't a web service, it required Open …
3
votes
I can’t build a library that needs WOW64 Api
Your platform SDK files are probably too old to have that function. That function first appeared in the XP 64 bit platform SDK. You can get the latest SDK here: …
1
vote
C++ for games
You should check out wildmagic at http://www.geometrictools.com/. This is a nice game engine with lots of sample code and related books. …
