home *** CD-ROM | disk | FTP | other *** search
- // Microworks ObjectMate 2.6
- //
- // "SFX Class Library"
- //
- // An ObjectWindows 2.0 extension for Borland C++ 4.0
- //
- // Copyright 1992-94 Microworks Sydney, Australia.
- //
- // SBITMAP.H
-
- #if !defined(__SFX_SBITMAP_H)
- #define __SFX_SBITMAP_H
-
- #if !defined(__OWL_CONTROL_H)
- #include <owl\control.h>
- #endif
-
- // class TSFXBitmap
-
- class _OWLCLASS TSFXBitmap : public TControl
- {
- public:
- TSFXBitmap(TWindow* parent,
- int id,
- int x, int y,
- TModule* module = 0);
-
- TSFXBitmap(TWindow* parent, int resourceId, TModule* module = 0);
-
- protected:
- char far* GetClassName();
-
- DECLARE_STREAMABLE_FROM_BASE(_OWLCLASS, TSFXBitmap, TControl);
- };
-
- #endif // __SFX_SBITMAP_H
-