10 lines
198 B
C
10 lines
198 B
C
|
#ifndef SCALENE_TRIANGLE_H
|
||
|
#define SCALENE_TRIANGLE_H
|
||
|
#include "Triangle.h"
|
||
|
class ScaleneTriangle : public ATriangle {
|
||
|
public:
|
||
|
bool validate() override;
|
||
|
};
|
||
|
|
||
|
#endif // SCALENE_TRIANGLE_H
|