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