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.
- //
- // SRADIO.H
-
- #if !defined(__SFX_SRADIO_H)
- #define __SFX_SRADIO_H
-
- #if !defined(__OWL_RADIOBUT_H)
- #include <owl\radiobut.h>
- #endif
-
- class _OWLCLASS TGroupBox;
-
- // class TSFXRadioButton
-
- class _OWLCLASS TSFXRadioButton : public TRadioButton
- {
- public:
- TSFXRadioButton(TWindow* parent,
- int id,
- const char far* title,
- int x, int y, int w, int h,
- TGroupBox* group,
- TModule* module = 0);
-
- TSFXRadioButton(TWindow* parent,
- int resourceId,
- TGroupBox* group,
- TModule* module = 0);
-
- protected:
- char far* GetClassName();
-
- DECLARE_STREAMABLE_FROM_BASE(_OWLCLASS, TSFXRadioButton, TRadioButton);
- };
-
- #endif // __SFX_SRADIO_H
-