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 / pool.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-16  |  850 b   |  44 lines

  1. /*************************************************************************
  2. *  Copyright (c) 1989-1992 Micro Digital Associates, Inc.
  3. *                  All Rights Reserved.
  4. *
  5. *  MODULE: Pool         pool.hpp
  6. *
  7. *  DESRIPTION:
  8. *                 This file contains the definition of the pool class.
  9. *                 The pool class is an abstract class. 
  10. *
  11. *
  12. *  AUTHOR: Rick Evans 
  13. *
  14. *
  15. *  UPDATE LOG
  16. *
  17. *************************************************************************/
  18.  
  19. #ifndef __POOL_HPP
  20. #define __POOL_HPP   1
  21.  
  22. #include    <xtypes.h>
  23.  
  24. class Pool
  25. {
  26. protected:
  27.    PCB_PTR     PoolCBP;
  28.  
  29. public:
  30.    //---- constructors ------
  31.    // base class no constructor.
  32.  
  33.    //----- methods --------
  34.    BCB_PTR     Get();
  35.    BOOLEAN     Rel( BCB_PTR bp );
  36.  
  37.    //---- destructor ------
  38.    ~Pool();
  39.  
  40. };
  41.  
  42. #endif
  43. //EOF
  44.