home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / pascal / library / dos / memory / sweep / heap.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1990-07-07  |  174 b   |  11 lines

  1. ////////////////
  2. // heap class //
  3. ////////////////
  4.  
  5. class Heap {
  6.     void far * oldheap;
  7.   public:
  8.     Heap (unsigned long s = 0, unsigned b = 0);
  9.     ~Heap();
  10. };
  11.