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