home *** CD-ROM | disk | FTP | other *** search
- /*---------------------------------------------------------*/
- /* */
- /* Heap.h : Header file for Heap.cpp */
- /*---------------------------------------------------------*/
-
- #if ! defined( __Heap_H ) && defined(Uses_THeapView)
- #define __Heap_H
-
-
- class TRect;
-
- class THeapView : public TView
- {
-
- public:
-
- THeapView( TRect& r = TRect(0, 0, 0, 0) );
- virtual void update();
- virtual void draw();
- virtual long heapSize();
-
- private:
-
- long oldMem, newMem;
- char heapStr[16];
-
- };
-
- #endif // __Heap_H
-