eligantRU / oop

This is repository for labs of OOP
0 stars 2 forks source link

Замечания по программе Shapes #15

Open alexey-malov opened 7 years ago

alexey-malov commented 7 years ago
class IShape
{
public:
    IShape() = default;
    virtual ~IShape() = default;

    virtual double GetArea() const = 0;
    virtual double GetPerimeter() const = 0;
    virtual std::string ToString() const = 0;
    std::string GetOutlineColor() const;

protected:
    std::string m_outlineColor;
};
alexey-malov commented 7 years ago
alexey-malov commented 7 years ago
alexey-malov commented 7 years ago
alexey-malov commented 7 years ago
alexey-malov commented 7 years ago
alexey-malov commented 7 years ago