home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 May
/
Pcwk5b98.iso
/
Borland
/
Cplus45
/
BC45
/
OWLBWCC.PAK
/
BWINDOW.H
< prev
next >
Wrap
C/C++ Source or Header
|
1995-08-29
|
793b
|
30 lines
//----------------------------------------------------------------------------
// ObjectWindows - (C) Copyright 1991, 1993 by Borland International
// Defines class TBWindow, a BWCC friendly derivation of TWindow
//----------------------------------------------------------------------------
#ifndef __BWINDOW_H
#define __BWINDOW_H
#ifndef __WINDOW_H
#include <owl\window.h>
#endif
//
// class TBWindow
// ----- --------
//
class TBWindow : public TWindow {
public:
TBWindow(TWindow* parent,
const char far* name,
TModule* module = 0);
protected:
char far* GetClassName();
void GetWindowClass(WNDCLASS& wndClass);
DECLARE_STREAMABLE_FROM_BASE(, TBWindow, TWindow);
};
#endif //__BWINDOW_H