home *** CD-ROM | disk | FTP | other *** search
/ The Pier Shareware 6 / The_Pier_Shareware_Number_6_(The_Pier_Exchange)_(1995).iso / 038 / dho_9a.zip / CONTROL.H < prev    next >
Text File  |  1994-10-12  |  543b  |  30 lines

  1. // Developer Helper Object Set, (C) 1994 Thomas E. Bednarz, Jr.
  2. //  All rights reserved
  3.  
  4. #ifndef __CONTROL_H__
  5. #define __CONTROL_H__
  6.  
  7.  
  8. #include"object.h"
  9. #define INCL_WIN
  10.  
  11. #include<os2.h>
  12. #include"winbase.h"
  13.  
  14. class TControl : public TObject
  15. {
  16.  
  17.    protected:
  18.       TWinBase *fParent;
  19.       ULONG fResource;
  20.    public:
  21.       TControl(TWinBase *parent, ULONG resource);
  22.       virtual ~TControl();
  23.       MRESULT SendMessage(ULONG ul, MPARAM mp1, MPARAM mp2);
  24.  
  25.       virtual const char *getClassName();
  26.   
  27. };
  28.  
  29. #endif
  30.