1
0
Fork 0
This repository has been archived on 2021-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
uni-m.cds-adv-prog/ex8.3/Square.hh

25 lines
458 B
C++

#ifndef SQUARE_HH
#define SQUARE_HH
#include "Shape.hh"
class Square: public Shape {
public:
// Constructor, destructor
Square(double size) : _size(size) {} ;
virtual ~Square() {} ;
// Implementation of abstract interface
virtual double surface() const { return _size * _size ; }
virtual double circumference() const { return 4 * _size ; }
virtual const char* shapeName() const { return "Square"; }
private:
double _size ;
} ;
#endif