10 lines
214 B
C
10 lines
214 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
|