home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool_main.zip / ool / include / xsframe.h < prev    next >
C/C++ Source or Header  |  1997-12-02  |  1KB  |  28 lines

  1. #ifndef __OOL_XSFRAME_H__
  2. #define __OOL_XSFRAME_H__
  3.  
  4.  
  5. /*===========================================================================*/
  6. /* OOL ------------------- the Open Object Library ------------------- r 1.0 */
  7. /*===========================================================================*/
  8. /*                              class: XStaticFrame                          */
  9. /*                       derived from: XStatic                               */
  10. /*                        last update: 12/96                                 */
  11. /*                      programmed by: Stefan von Brauk (sbrauk@gwdg.de)     */
  12. /*===========================================================================*/
  13.  
  14. #include "xstatic.h"
  15.  
  16.  
  17. class _export_ XStaticFrame: public XStatic
  18. {
  19.       friend class XFrameWindow;
  20.    private:
  21.       XStaticFrame( const HWND hwnd):XStatic(hwnd) {;}
  22.    public:
  23.       XStaticFrame( const XWindow * w, const XRect& p=XRect(), const LONG id=0);
  24.       virtual ~XStaticFrame() {;}
  25. };
  26.  
  27. #endif
  28.