9 lines
204 B
C++
9 lines
204 B
C++
#ifndef EQUILATERAL_TRIANGLE_H
|
|
#define EQUILATERAL_TRIANGLE_H
|
|
#include "Triangle.h"
|
|
class EquilateralTriangle : public ATriangle {
|
|
public:
|
|
bool validate() override;
|
|
};
|
|
|
|
#endif // EQUILATERAL_TRIANGLE_H
|