lab 5 part 1 done
This commit is contained in:
@@ -13,17 +13,10 @@
|
||||
Shape::Shape(){
|
||||
this->color = (uint32_t) 0x00FFFFFF;
|
||||
}
|
||||
Shape::Shape(const Shape& from){
|
||||
this->color = from.color;
|
||||
this->coords = from.coords;
|
||||
}
|
||||
Shape::Shape(const Shape& from){};
|
||||
|
||||
Shape::~Shape(){};
|
||||
|
||||
void Shape::draw(GraphicsContext *gc){}
|
||||
|
||||
void Shape::out(std::ostream& os, const Shape& rhs){}
|
||||
|
||||
Shape& Shape::operator=(const Shape& rhs){
|
||||
return *this;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user