home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / lstbx3.zip / xlistevt.cpp < prev    next >
Text File  |  1994-08-12  |  1KB  |  31 lines

  1. /*******************************************************************************
  2. * FILE NAME: xlistevt.cpp                                                      *
  3. *                                                                              *
  4. * DESCRIPTION:                                                                 *
  5. *   This file contains the implementation of classes/functions declared        *
  6. *   in xlistevt.hpp.                                                           *
  7. *                                                                              *
  8. *******************************************************************************/
  9. extern "C"
  10. {
  11.   #define INCL_WINWINDOWMGR
  12.   #include <os2.h>
  13.   #include "listbox.h"
  14. }
  15.  
  16. #ifndef _XLISTEVT_
  17.   #include "xlistevt.hpp"
  18. #endif
  19.  
  20.  
  21. /*------------------------------------------------------------------------------
  22. | ListBox32Event::ListBox32Event                                               |
  23. |                                                                              |
  24. | Construct from an instance of the IEvent class.                              |
  25. ------------------------------------------------------------------------------*/
  26. ListBox32Event::ListBox32Event( IEvent &evt ) :
  27.                 ListBox32Event::Inherited(evt)
  28. {
  29. }
  30.  
  31.