Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by kufdam

  1. kufdam

    using the heap debugger

    I am trying to trap some memory leaks using the debug heap functions. The following statements set up the heap debugger. #define _CRTDBG_MAP_ALLOC #include <stdlib.h> #include <crtdbg.h> However, when I use _CrtDumpMemoryLeaks(); I get information in the following format (ONLY ONE...
  2. kufdam

    problem compiling this class

    That's whatI think too (i.e. the class definition is ok, the problem is elsewhere). If I compile the class as shown the compiler comes up with the same error but for the &quot;class PathSquare&quot; line, so I had to change the line to &quot;class (Path Square)&quot; as shown the in MSDN...
  3. kufdam

    problem compiling this class

    I am writing a pac man game to practice using the Windows API. I recently added pathfinding using an A* algorithm. To do this I used a class shown below: ////////////////////////////////////////////////////////////////////////////// // Class : PathSquare // // PathSquare objects are used in...

Part and Inventory Search

Back
Top