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

  1. #ifndef __OOL_XCIRCLE_H__
  2. #define __OOL_XCIRCLE_H__
  3.  
  4. /*===========================================================================*/
  5. /* OOL ------------------- the Open Object Library ------------------- r 1.0 */
  6. /*===========================================================================*/
  7. /*                              class: XCircle                               */
  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.  
  16.  
  17. class _export_ XCircle: public XLine
  18. {
  19.       BOOL filled;
  20.       USHORT w;
  21.       USHORT h;
  22.       SHORT x;
  23.       SHORT y;
  24.    public:
  25.       XCircle( const XPoint * center, const ULONG wight, const BOOL fill=FALSE, const USHORT hight=0, const SHORT xOff = 0, const SHORT yOff = 0);
  26.       virtual ~XCircle() {;}
  27.       void Draw( XGraphicDevice * dev);
  28. };
  29.  
  30.  
  31. #endif
  32.