home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ocl150a.zip / OCL / Samples / DragSamp / Source / dragsamp.hpp < prev    next >
C/C++ Source or Header  |  1996-08-12  |  609b  |  34 lines

  1. // dragsamp.hpp
  2.  
  3. // $Header: W:/Projects/OCL/Samples/DragSamp/Source/rcs/dragsamp.hpp 1.50 1996/08/11 23:47:58 B.STEIN Release $
  4.  
  5. #include <ocl.hpp>
  6. #include <OApp.hpp>
  7. #include <ODialog.hpp>
  8. #include <ODragEntryField.hpp>
  9.  
  10. #include "..\Source\dragsamp.h"
  11.  
  12.  
  13. extern "C" void main(void);
  14.  
  15.  
  16. class DragSamp
  17.   : virtual public OApp,
  18.     virtual public ODialog
  19. {
  20.  private:
  21.     ODragEntryField odf_a;
  22.     ODragEntryField odf_b;
  23.     ODragEntryField odf_c;
  24.  
  25.  public:
  26.     DragSamp();
  27.     virtual ~DragSamp();
  28.  
  29.     BOOL OCommand(ULONG msg, MPARAM mp1, MPARAM mp2);
  30. };
  31.  
  32.  
  33. // end of source
  34.