10 lines
178 B
C
10 lines
178 B
C
|
#ifndef QUADRILATERAL_H
|
||
|
#define QUADRILATERAL_H
|
||
|
#include "Polygon.h"
|
||
|
class AQuadrilateral : public APolygon {
|
||
|
public:
|
||
|
AQuadrilateral();
|
||
|
};
|
||
|
|
||
|
#endif // QUADRILATERAL_H
|