Do you provide default values for one or more arguments, or add overloads of the function that take fewer arguments? This is a design decision every C++ developer faces at some point. There are more ...
I'm trying to write a fairly simple simulation for resource modeling in C++. I'm modeling both servers and applications as their own objects. I'd like to use an STL vector for storing server objects, ...
I am writing a B+ Tree template class for a school project. I have been writing and compiling under VS.NET. Everything is fine, no complains. Now, I moved to the school's *nix system and try to ...