home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / windows / c / mobjm260 / slistbox.cp_ / slistbox.cp
Encoding:
Text File  |  1994-09-06  |  826 b   |  40 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. //  SLISTBOX.CPP 
  10.  
  11. #include <owl\owlpch.h>
  12. #include <sfx\sfx200.h>
  13. #include "sfx\slistbox.h"
  14.  
  15. IMPLEMENT_STREAMABLE_FROM_BASE(TSFXListBox, TListBox);
  16.  
  17. //    constructor for a TSFXListBox object
  18.  
  19. TSFXListBox::TSFXListBox(TWindow*        parent,
  20.                          int             id,
  21.                          int x, int y, int w, int h,
  22.                          TModule*        module)
  23.     :TListBox(parent, id, x, y, w, h, module)
  24. {
  25. }
  26.  
  27. //    constructor for a TSFXListBox resource object
  28.  
  29. TSFXListBox::TSFXListBox(TWindow* parent, int resourceId, TModule* module)
  30.     :TListBox(parent, resourceId, module)
  31. {
  32. }
  33.     
  34. char far*
  35. TSFXListBox::GetClassName()
  36. {
  37.     return "SFXLISTBOX";
  38. }
  39.  
  40.