// @(#)BoxShape.h	3.7 7/28/92

#ifndef BoxShape_First

#ifdef __GNUG__
#pragma interface
#endif

#define BoxShape_First

#include "Shape.h"

//---- Box Shape ---------------------------------------------------------------

class BoxShape : public Shape {
public:
    MetaDef(BoxShape);
    
    BoxShape();
	
    short *GetImage();
    void Draw(Rectangle);
    void Outline(Point p1, Point p2);
    bool ContainsPoint(Point p);
};

#endif BoxShape_First

