home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 17 / CD_ASCQ_17_101194.iso / vrac / ve2tv103.zip / HEAPVIEW.H < prev    next >
C/C++ Source or Header  |  1994-07-31  |  469b  |  22 lines

  1. // File    : HEAPVIEW.CPP
  2. // Author  : Eric Woodruff,  CIS ID: 72134,1150
  3. // Updated : Sun 07/31/94 15:56:28
  4. // Note    : Copyright 1993-94, Eric Woodruff, All rights reserved
  5. // Compiler: Borland C++ 3.1 to 4.02
  6. //
  7. // This file contains the Heap Viewer class declaration.
  8. //
  9.  
  10. class THeapView : public TView
  11. {
  12. private:
  13.     long oldMem;
  14.     char heapStr[25];
  15.  
  16. public:
  17.     THeapView(TRect &r);
  18.  
  19.     virtual void update();
  20.     virtual void draw();
  21. };
  22.