home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool_main.zip / ool / include / xbox.h < prev    next >
Text File  |  1998-01-18  |  965b  |  31 lines

  1. #ifndef __OOL_XBOX_H__
  2. #define __OOL_XBOX_H__
  3.  
  4. /*===========================================================================*/
  5. /* OOL ------------------- the Open Object Library ------------------- r 1.0 */
  6. /*===========================================================================*/
  7. /*                              class: XBox                                  */
  8. /*                       derived from: XLine                                 */
  9. /*                        last update: 12/96                                 */
  10. /*                      programmed by: Stefan von Brauk (sbrauk@gwdg.de)     */
  11. /*===========================================================================*/
  12.  
  13.  
  14. #include "xline.h"
  15. #include "xpoint.h"
  16.  
  17. class XRect;
  18.  
  19. class _export_ XBox: public XLine
  20. {
  21.    private:
  22.       char fill;
  23.    public:
  24.       XBox( const XPoint *, const XPoint *, const BOOL fill=TRUE);
  25.       virtual ~XBox() {;}
  26.       void Draw( XGraphicDevice * dev);
  27. };
  28.  
  29.  
  30. #endif
  31.