home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 26 / CD_ASCQ_26_1295.iso / vrac / tvme30.zip / HEAPVIEW.H < prev    next >
C/C++ Source or Header  |  1995-08-02  |  469b  |  22 lines

  1. // File    : HEAPVIEW.CPP
  2. // Author  : Eric Woodruff,  CIS ID: 72134,1150
  3. // Updated : Wed 08/02/95 17:54:19
  4. // Note    : Copyright 1993-95, Eric Woodruff, All rights reserved
  5. // Compiler: Borland C++ 3.1 to 4.xx
  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.