9 lines
188 B
C++
9 lines
188 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
|