home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / windows / c / mobjm260 / sradio.cp_ / sradio.cp
Encoding:
Text File  |  1994-09-06  |  1.0 KB  |  46 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. //  SRADIO.CPP
  10.  
  11. #include <owl\owlpch.h>
  12. #include <sfx\sfx200.h>
  13. #include "sfx\sradio.h"
  14.  
  15. IMPLEMENT_STREAMABLE_FROM_BASE(TSFXRadioButton, TRadioButton);
  16.  
  17. //    constructor for a TSFXRadioButton object
  18.  
  19. TSFXRadioButton::TSFXRadioButton(TWindow*        parent,
  20.                                  int             id,
  21.                                  const char far* title,
  22.                                  int x, int y, int w, int h,
  23.                                  TGroupBox*      group,
  24.                                  TModule*        module)
  25.     :TRadioButton(parent, id, title, x, y, w, h, group, module)
  26. {
  27. }
  28.  
  29. //    constructor for a TSFXRadioButton object created from a resource definition
  30.  
  31. TSFXRadioButton::TSFXRadioButton(TWindow*   parent,
  32.                                  int        resourceId,
  33.                                  TGroupBox* group,
  34.                                  TModule*   module)
  35.     :TRadioButton(parent, resourceId, group, module)
  36. {
  37. }
  38.  
  39. char far*
  40. TSFXRadioButton::GetClassName()
  41. {
  42.     return "SFXRADIO";
  43. }
  44.  
  45.  
  46.