lab 5 part 1 done

This commit is contained in:
2022-05-02 22:07:53 -05:00
parent bf5490504c
commit e381f5d7ca
7 changed files with 69 additions and 44 deletions

View File

@@ -23,6 +23,7 @@ class Line: public Shape{
~Line();
Line& operator=(const Line& rhs);
void draw(GraphicsContext *gc);
void out(std::ostream& os) const;
Shape* clone();
};