home *** CD-ROM | disk | FTP | other *** search
- #ifndef _IDMTBRIT_
- #define _IDMTBRIT_
- /*******************************************************************************
- * FILE NAME: idmtbrit.hpp *
- * *
- * DESCRIPTION: *
- * Declaration of the classes: *
- * IDMToolBarItem *
- * *
- * COPYRIGHT: *
- * IBM Open Class Library *
- * (C) Copyright International Business Machines Corporation 1992, 1996 *
- * Licensed Material - Program-Property of IBM - All Rights Reserved. *
- * US Government Users Restricted Rights - Use, duplication, or disclosure *
- * restricted by GSA ADP Schedule Contract with IBM Corp. *
- * *
- *******************************************************************************/
- #include <idmitem.hpp>
-
- class IDMToolBarItemData;
-
- #pragma pack(4)
-
- class IDMToolBarItem : public IDMItem {
- typedef IDMItem
- Inherited;
- public:
-
- /*------------------------------- Constructors -------------------------------*/
- IDMToolBarItem ( const IDMItem::Handle& dragItem );
-
- virtual
- ~IDMToolBarItem ( );
-
- /*------------------------------ Drop Processing -----------------------------*/
- virtual Boolean
- targetDrop ( IDMTargetDropEvent& event );
-
- private:
- /*--------------------------------- Private ----------------------------------*/
-
- IDMToolBarItemData
- *fDMToolBarItemData;
-
- }; // IDMToolBarItem
-
- #pragma pack()
-
-
- #endif // _IDMTBRIT_
-