home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 May / Pcwk5b98.iso / Borland / Cplus45 / BC45 / OWLBWCC.PAK / BWINDOW.H < prev    next >
C/C++ Source or Header  |  1995-08-29  |  793b  |  30 lines

  1. //----------------------------------------------------------------------------
  2. // ObjectWindows - (C) Copyright 1991, 1993 by Borland International
  3. //   Defines class TBWindow, a BWCC friendly derivation of TWindow
  4. //----------------------------------------------------------------------------
  5. #ifndef __BWINDOW_H
  6. #define __BWINDOW_H
  7.  
  8. #ifndef __WINDOW_H
  9.   #include <owl\window.h>
  10. #endif
  11.  
  12. //
  13. //  class TBWindow
  14. //  ----- --------
  15. //
  16. class  TBWindow : public TWindow {
  17.   public:
  18.     TBWindow(TWindow*        parent,
  19.              const char far* name,
  20.              TModule*        module = 0);
  21.  
  22.   protected:
  23.     char far* GetClassName();
  24.     void      GetWindowClass(WNDCLASS& wndClass);
  25.  
  26.   DECLARE_STREAMABLE_FROM_BASE(, TBWindow, TWindow);
  27. };
  28.  
  29. #endif //__BWINDOW_H
  30.