home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-08-22 | 577 b | 22 lines | [TEXT/CWIE] |
- // Release Version: $ ODF 2 $
- // Copyright: (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
-
- #ifndef PIZZA_H
- #define PIZZA_H
-
- //==========================================================================
- class FW_CRect;
-
- //==========================================================================
- class CPizza {
- public:
- CPizza(FW_CRect bounds);
- virtual ~CPizza();
- virtual void Draw(FW_CGraphicContext& gc);
- FW_CRect GetBounds();
- private:
- FW_CRect fBounds;
- };
-
- //==========================================================================
- #endif