home *** CD-ROM | disk | FTP | other *** search
/ POINT Software Programming / PPROG1.ISO / pascal / sweep10 / heap.hpp < prev    next >
Text File  |  1993-04-01  |  174b  |  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.