Click here to Skip to main content
15,899,313 members
Home / Discussions / ATL / WTL / STL
   

ATL / WTL / STL

 
GeneralRe: DEBUG_NEW for ATL apps? Pin
Stuart Dootson8-Aug-06 0:05
professionalStuart Dootson8-Aug-06 0:05 
QuestionFileMaker Pro Pin
khwo6-Aug-06 20:59
khwo6-Aug-06 20:59 
AnswerRe: FileMaker Pro Pin
User 2155976-Aug-06 21:34
User 2155976-Aug-06 21:34 
Questionstl containers allocation in heap or stack? Pin
sawerr4-Aug-06 12:44
sawerr4-Aug-06 12:44 
AnswerRe: stl containers allocation in heap or stack? Pin
Jörgen Sigvardsson4-Aug-06 13:14
Jörgen Sigvardsson4-Aug-06 13:14 
GeneralRe: stl containers allocation in heap or stack? Pin
sawerr4-Aug-06 20:07
sawerr4-Aug-06 20:07 
AnswerRe: stl containers allocation in heap or stack? Pin
Kevin McFarlane7-Aug-06 0:41
Kevin McFarlane7-Aug-06 0:41 
GeneralRe: stl containers allocation in heap or stack? Pin
Jörgen Sigvardsson17-Aug-06 12:20
Jörgen Sigvardsson17-Aug-06 12:20 
template <typename T> 
struct Deleter { void operator(T* pObj) { delete pObj; } };
  
template <typename Collection>
void DeleteAllObjects(Collection& coll)
{
   std::for_each(coll.begin(), coll.end(), Deleter<Collection::value_type>());
   coll.clear();
};
Smile | :)


--
Based on a True Story
GeneralRe: stl containers allocation in heap or stack? Pin
Kevin McFarlane18-Aug-06 8:44
Kevin McFarlane18-Aug-06 8:44 
Question[ ! ] Crashing Connection points in the .exe.. Help!! Pin
Eytukan4-Aug-06 3:18
Eytukan4-Aug-06 3:18 
AnswerRe: [ ! ] Crashing Connection points in the .exe.. Help!! Pin
Roger Stoltz4-Aug-06 4:12
Roger Stoltz4-Aug-06 4:12 
GeneralRe: [ ! ] Crashing Connection points in the .exe.. Help!! Pin
Eytukan4-Aug-06 4:19
Eytukan4-Aug-06 4:19 
GeneralRe: [ ! ] Crashing Connection points in the .exe.. Help!! Pin
Roger Stoltz4-Aug-06 4:34
Roger Stoltz4-Aug-06 4:34 
GeneralRe: [ ! ] Crashing Connection points in the .exe.. Help!! Pin
Eytukan4-Aug-06 5:28
Eytukan4-Aug-06 5:28 
GeneralRe: [ ! ] Crashing Connection points in the .exe.. Help!! Pin
Roger Stoltz4-Aug-06 5:35
Roger Stoltz4-Aug-06 5:35 
GeneralRe: [ ! ] Crashing Connection points in the .exe.. Help!! Pin
Eytukan8-Aug-06 3:36
Eytukan8-Aug-06 3:36 
GeneralRe: [ ! ] Crashing Connection points in the .exe.. Help!! [modified] Pin
Roger Stoltz8-Aug-06 3:45
Roger Stoltz8-Aug-06 3:45 
GeneralRe: [ ! ] Crashing Connection points in the .exe.. Help!! Pin
Eytukan8-Aug-06 23:13
Eytukan8-Aug-06 23:13 
GeneralRe: [ ! ] Crashing Connection points in the .exe.. Help!! Pin
Eytukan10-Aug-06 22:59
Eytukan10-Aug-06 22:59 
QuestionATL and _pAtlModule->Lock() failure. Pin
eXeonical..4-Aug-06 0:12
eXeonical..4-Aug-06 0:12 
AnswerRe: ATL and _pAtlModule->Lock() failure. Pin
CPP_Student4-Aug-06 9:11
CPP_Student4-Aug-06 9:11 
GeneralRe: ATL and _pAtlModule-->Lock() failure. Pin
eXeonical..6-Aug-06 23:06
eXeonical..6-Aug-06 23:06 
QuestionErase elements while iterating on a map Pin
vikramlinux3-Aug-06 20:27
vikramlinux3-Aug-06 20:27 
AnswerRe: Erase elements while iterating on a map Pin
Zac Howland4-Aug-06 3:40
Zac Howland4-Aug-06 3:40 
AnswerRe: Erase elements while iterating on a map Pin
Michael Dunn4-Aug-06 14:06
sitebuilderMichael Dunn4-Aug-06 14:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.