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.CPP
-
- #include <owl\owlpch.h>
- #include <sfx\sfx200.h>
- #include "sfx\sradio.h"
-
- IMPLEMENT_STREAMABLE_FROM_BASE(TSFXRadioButton, TRadioButton);
-
- // constructor for a TSFXRadioButton object
-
- TSFXRadioButton::TSFXRadioButton(TWindow* parent,
- int id,
- const char far* title,
- int x, int y, int w, int h,
- TGroupBox* group,
- TModule* module)
- :TRadioButton(parent, id, title, x, y, w, h, group, module)
- {
- }
-
- // constructor for a TSFXRadioButton object created from a resource definition
-
- TSFXRadioButton::TSFXRadioButton(TWindow* parent,
- int resourceId,
- TGroupBox* group,
- TModule* module)
- :TRadioButton(parent, resourceId, group, module)
- {
- }
-
- char far*
- TSFXRadioButton::GetClassName()
- {
- return "SFXRADIO";
- }
-
-
-