home *** CD-ROM | disk | FTP | other *** search
/ C/C++ User's Journal & Wi…eveloper's Journal Tools / C-C__Users_Journal_and_Windows_Developers_Journal_Tools_1997.iso / smxdemo / smxpp / nhpool.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-16  |  862 b   |  39 lines

  1. /*************************************************************************
  2. *  Copyright (c) 1989-1992 Micro Digital Associates, Inc.
  3. *                  All Rights Reserved.
  4. *
  5. *  MODULE: Near Heap Pool         nhpool.hpp
  6. *
  7. *  DESRIPTION:
  8. *                 This file contains the definition of the near heap 
  9. *                 pool class. It is dirived from the pool class.
  10. *
  11. *
  12. *  AUTHOR: Rick Evans 
  13. *
  14. *
  15. *  UPDATE LOG
  16. *
  17. *************************************************************************/
  18.  
  19. #ifndef __NHPOOL_HPP
  20. #define __NHPOOL_HPP   1
  21.  
  22. #include    <xtypes.h>
  23. #include    "pool.hpp"
  24.  
  25. class NearHeapPool : public Pool
  26. {
  27.  
  28. public:
  29.    //--------- constuctors ---------
  30.    NearHeapPool( word NumBlks, word BlkSize );
  31.    NearHeapPool( PCB_PTR p );
  32.  
  33.    //---------- destuctors ----------
  34.    // in base class
  35. };
  36.  
  37. #endif
  38. //EOF
  39.