home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / windows / c / mobjm260 / sbitmap.h_ / sbitmap.h
Encoding:
C/C++ Source or Header  |  1994-09-06  |  743 b   |  37 lines

  1. //    Microworks ObjectMate  2.6
  2. //
  3. //  "SFX Class Library"
  4. //
  5. //    An ObjectWindows 2.0 extension for Borland C++ 4.0
  6. //
  7. //    Copyright 1992-94 Microworks Sydney, Australia.
  8. //
  9. //  SBITMAP.H
  10.  
  11. #if !defined(__SFX_SBITMAP_H)
  12. #define __SFX_SBITMAP_H
  13.  
  14. #if !defined(__OWL_CONTROL_H)
  15.   #include <owl\control.h>
  16. #endif
  17.  
  18. //    class TSFXBitmap
  19.  
  20. class _OWLCLASS TSFXBitmap : public TControl
  21. {
  22.   public:
  23.     TSFXBitmap(TWindow*        parent,
  24.                int             id,
  25.                int x, int y,
  26.                TModule*        module = 0);
  27.  
  28.     TSFXBitmap(TWindow* parent, int resourceId, TModule* module = 0);
  29.  
  30.   protected:
  31.     char far*  GetClassName();
  32.  
  33.   DECLARE_STREAMABLE_FROM_BASE(_OWLCLASS, TSFXBitmap, TControl);
  34. };
  35.  
  36. #endif    //    __SFX_SBITMAP_H
  37.