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.
- //
- // SLISTBOX.CPP
-
- #include <owl\owlpch.h>
- #include <sfx\sfx200.h>
- #include "sfx\slistbox.h"
-
- IMPLEMENT_STREAMABLE_FROM_BASE(TSFXListBox, TListBox);
-
- // constructor for a TSFXListBox object
-
- TSFXListBox::TSFXListBox(TWindow* parent,
- int id,
- int x, int y, int w, int h,
- TModule* module)
- :TListBox(parent, id, x, y, w, h, module)
- {
- }
-
- // constructor for a TSFXListBox resource object
-
- TSFXListBox::TSFXListBox(TWindow* parent, int resourceId, TModule* module)
- :TListBox(parent, resourceId, module)
- {
- }
-
- char far*
- TSFXListBox::GetClassName()
- {
- return "SFXLISTBOX";
- }
-
-