home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / uicldd.zip / IDMCNRPV.HPP < prev    next >
Text File  |  1993-09-02  |  3KB  |  66 lines

  1. #ifndef _IDMCNRPV_
  2.   #define _IDMCNRPV_
  3. /*******************************************************************************
  4. * FILE NAME: idmcnrpv.hpp                                                      *
  5. *                                                                              *
  6. * DESCRIPTION:                                                                 *
  7. *   Declaration of the class(es):                                              *
  8. *    IDMContainerProvider - This class creates and manages container source    *
  9. *                           and target drag items.                             *
  10. *                                                                              *
  11. * COPYRIGHT:                                                                   *
  12. *   Licensed Materials - Property of IBM                                       *
  13. *   (C) Copyright IBM Corporation 1992, 1993                                   *
  14. *   All Rights Reserved                                                        *
  15. *   US Government Users Restricted Rights - Use, duplication, or disclosure    *
  16. *   restricted by GSA ADP Schedule Contract with IBM Corp.                     *
  17. *                                                                              *
  18. * $Log:   M:/ibmclass/idrag/vcs/idmcnrpv.hpv  $
  19. //
  20. //   Rev 1.0   02 Sep 1993 20:30:18   banzai
  21. //Initial Drop
  22. //
  23. *******************************************************************************/
  24. #ifndef _IDMPROVC_
  25.   #include <idmprovc.hpp>
  26. #endif
  27.  
  28. #ifndef _IDMCNRIT_
  29.   #include <idmcnrit.hpp>
  30. #endif
  31.  
  32.  
  33. // Forward declarations for other classes:
  34.  
  35.  
  36. class IDMContainerProvider : public IDMCnrItemProviderFor < IDMCnrItem >
  37. {
  38. /*******************************************************************************
  39. * The IDMContainerProvider class provides support for creating container       *
  40. * source and target drag items.                                                *
  41. *                                                                              *
  42. * EXAMPLE:                                                                     *
  43. *   IDMContainerProvider *pCnrProvider = new IDMContainerProvider();           *
  44. *                                                                              *
  45. *******************************************************************************/
  46.  
  47. public:
  48.  
  49. /*------------------------ Constructors ----------------------------------------
  50. | Objects of this class are constructed in the following manner:               |
  51. ------------------------------------------------------------------------------*/
  52.   IDMContainerProvider     ( );
  53.  
  54. virtual
  55.   ~IDMContainerProvider    ( );
  56.  
  57.  
  58. protected:
  59.  
  60. private:
  61. /*--------------------------------- PRIVATE ----------------------------------*/
  62.  
  63. };  // class IDMContainerProvider
  64.  
  65. #endif  /* _IDMCNRPV_ */
  66.