Search Results

0
votes

In C++, what alternatives do I have for exposing a collection, from the point of view of performance and data integrity.

Using const is a reasonable choice. You may also wish to check out the boost C++ library for their shared pointer implementation. It provides the advantages of pointers i.e. you may have the requir …
2
votes

Managing/Using libraries with Debug builds vs Release builds

I would first determine what requirements are needed from the library: Debug/Release Unicode support And so on.. With that determined you can then cre …