10 lines
173 B
C
10 lines
173 B
C
|
#ifndef RHOMBUS_H
|
||
|
#define RHOMBUS_H
|
||
|
#include "Quadrilateral.h"
|
||
|
class Rhombus : public AQuadrilateral {
|
||
|
public:
|
||
|
bool validate() override;
|
||
|
};
|
||
|
|
||
|
#endif // RHOMBUS_H
|