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.
- //
- // SCOMBO.CPP
-
- #include <owl\owlpch.h>
- #include <sfx\sfx200.h>
- #include "sfx\scombo.h"
-
- IMPLEMENT_STREAMABLE_FROM_BASE(TSFXComboBox, TComboBox);
-
- // constructor for a TSFXComboBox object
-
- TSFXComboBox::TSFXComboBox(TWindow* parent,
- int id,
- int x, int y, int w, int h,
- DWORD style,
- UINT textLen,
- TModule* module)
- :TComboBox(parent, id, x, y, w, h, style, textLen, module)
- {
- }
-
- // constructor for a TSFXComboBox resource object
-
- TSFXComboBox::TSFXComboBox(TWindow* parent,
- int resourceId,
- UINT textLen,
- TModule* module)
- : TComboBox(parent, resourceId, textLen, module)
- {
- }
-
- char far*
- TSFXComboBox::GetClassName()
- {
- return "SFXCOMBOBOX";
- }
-
-