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