Setting up boost unit testing visual studio project
1. Header\ 1 2 3 4 #define BOOST_TEST_MODULE TestExample #include using namespace boost::unit_test; ``` 2. Linked library\ libboost_unit_test_framework-vc10...
1. Header\ 1 2 3 4 #define BOOST_TEST_MODULE TestExample #include using namespace boost::unit_test; ``` 2. Linked library\ libboost_unit_test_framework-vc10...
I have found very useful articles for understanding COM threading model about Apartment. If you want to understand COM Apartment model, the following article...
오랜만에 다시 C++책을 읽으면서 아래의 C++ exception에 대한 자세한 사항을 늘어 봅니다.
The following link explains about how .NET profiler works.
One of the hardest things is debugging a reference count leak. COM objects lifetime depends on the reference count (read here for more…). So each client of a...